Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Parallel Reader

fancivefancive140 downloads

AI-powered split-view reading: source note on the left, LLM-generated summary cards on the right with scroll-sync highlighting.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates20

Split-view reading for Obsidian — your original note on the left, AI-generated summary cards on the right, with scroll-sync highlighting.

English · 中文


Inspired by this reading workflow demo.

Features

  • Adaptive segmentation — the LLM decides natural topic boundaries. Short sections merge, long ones split. No dependency on markdown headings.
  • Scroll-sync — scrolling the editor auto-highlights the matching card on the right.
  • Streaming — real-time SSE streaming for OpenAI Chat and Anthropic APIs, so you see progress as it generates.
  • 20+ providers — Anthropic, OpenAI, Gemini, OpenRouter, Groq, DeepSeek, Moonshot, Ollama, LM Studio, and more. Plus Claude Code CLI and Codex CLI backends.
  • Persistent cache — summaries are cached by content SHA-1 + settings fingerprint. Reopen a note and cards appear instantly. Edits or config changes show a stale banner.
  • Rich rendering — cards render through Obsidian's MarkdownRenderer, so tables, bold, code, and wikilinks all work natively.
  • Card editing — right-click any card to copy, edit, delete, or jump to source.
  • Export — save cards as a Markdown note in your vault, or copy to clipboard.
  • Multi-language UI and output — UI supports Auto, Chinese, English, Japanese, Korean, French, German, and Spanish; generated titles, gists, and bullets can use the same fixed languages or follow the source document.

Quick Start

Step 1: Install the Plugin

  1. Go to the Releases page and download three files from the latest release: main.js, manifest.json, styles.css
  2. Open your vault folder, navigate to .obsidian/plugins/ (create it if it doesn't exist), and create a new folder called parallel-reader
  3. Put the three downloaded files into that folder
  4. Open Obsidian → Settings → Community plugins → find Parallel Reader → toggle it on

Tip: Can't see the .obsidian folder? On macOS press Cmd+Shift+. in Finder; on Windows enable "Show hidden files" in File Explorer.

Step 2: Set Up Your AI Provider

  1. In Obsidian, go to Settings → Parallel Reader
  2. Choose a Provider preset (e.g. Anthropic, OpenAI, DeepSeek, etc.)
  3. Paste your API Key
  4. (Optional) Change the Model if you prefer a different one
  5. Click Test to verify the connection

That's it! Open any note and run the command "Parallel Reader: Generate" from the command palette (Cmd/Ctrl+P).

Supported providers
Provider Notes
Anthropic Default, recommended
OpenAI GPT models
Google Gemini Gemini models
OpenRouter / Groq / DeepSeek / Moonshot / ... OpenAI-compatible
Ollama / LM Studio Local models, no API key needed
Custom endpoint Any OpenAI or Anthropic compatible API
CLI backends (advanced)

If you have Claude Code or Codex installed locally, you can use them as backends instead of API keys. Just switch the backend in settings — the plugin automatically detects common install locations. If auto-detection fails, you can manually enter the path in settings.

Usage

Action Effect
Click a card Jump editor to that section
Right-click a card Context menu: copy, edit, delete, jump to source
Scroll the editor Right-side card auto-highlights
Alt+↑ / Alt+↓ Navigate between cards
Enter in summary pane Jump to active card's source line
Ribbon icon Open the parallel reader pane
File context menu Generate / regenerate / clear cache

How It Works

The LLM returns structured JSON:

{
  "cards": [
    {
      "title": "Short heading",
      "anchor": "Verbatim quote from source for positioning",
      "gist": "One-sentence lead-in",
      "bullets": ["Supporting detail 1", "Supporting detail 2"]
    }
  ]
}

Anchor is the key mechanism — a verbatim quote that the plugin locates via indexOf with multi-level fallbacks, keeping scroll-sync working without relying on headings.

Gist + bullets gives both overview and scannable detail — pure prose felt like a wall of text, pure bullets felt fragmented.

Development

npm install
npm run dev       # watch mode
npm run build     # production build
npm run typecheck # TypeScript strict mode
npm run lint      # Biome
npm test          # build + typecheck + tests
npm run test:unit
npm run test:component
npm run test:contract
npm run test:e2e  # packaged plugin + disposable Vault smoke

For CI / release evidence, run the contract gate:

bash .e2e/gate.sh --json    # writes .e2e/artifact.json (gitignored)

Add TEST_LIVE=1 to opt into real local Vault / provider checks.

Star History

Star History Chart

License

MIT

80%
HealthExcellent
ReviewSatisfactory
About
Read in a split view with your original note on the left and AI-generated summary cards on the right, synced to your scroll and highlighted as you navigate. Generate adaptive, topic-aware summaries with streaming output from 20+ LLM providers, keep cached, richly rendered cards you can edit, export, or jump back to the source.
AIResearchNavigation
Details
Current version
1.0.23
Last updated
5 days ago
Created
4 weeks ago
Updates
20 releases
Downloads
140
Compatible with
Obsidian 1.8.7+
Platforms
Desktop only
License
MIT
Report bugRequest featureReport plugin
Sponsor
Support
Author
fancivefancive
GitHubfancive
  1. Community
  2. Plugins
  3. AI
  4. Parallel Reader

Related plugins

Khoj

An AI personal assistant for your digital brain.

Semantic Notes Vault MCP

Give Claude Desktop and other AI assistants semantic access to your notes through a built-in Model Context Protocol (MCP) server.

Neural Composer

Local Graph RAG powered by LightRAG. Chat with your notes using deep knowledge graph connections.

Local LLM Helper

Use a local LLM server to augment your notes

InfraNodus AI Graph View

Interactive 3D graph view: text analysis, topic modeling, gap detection, and AI.

Notebook Navigator

A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.

Homepage

Open a note, base, or workspace on startup, or set it for quick access later.

Recent Files

Display a list of recently opened files.

Copilot

Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.

Claudian

Embeds Claude Code/Codex as an AI collaborator in your vault. Your vault becomes agent's working directory, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.