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

Advanced Graph View

n23eosn23eos849 downloads

Alternative graph view for large vaults with 3D visualization, clusters, PageRank and color schemes.

Add to Obsidian
Advanced Graph View screenshot
Advanced Graph View screenshot
Advanced Graph View screenshot
Advanced Graph View screenshot
  • Overview
  • Scorecard
  • Updates15

Advanced Graph View demo

▶ Full-quality video

Advanced Graph View — Nebula color scheme on a 9k-note vault

An advanced replacement for Obsidian's Graph View, built for large vaults (5,000–50,000 notes) where the default graph turns into a hairball. The graph becomes an analysis tool instead of a decoration: it shows what you actually use, where your knowledge hubs are, and how your vault grew over time.

Desktop only. The renderer leans on WebGL and two Web Workers; the plugin declares isDesktopOnly: true and will not load on Obsidian mobile.

Installation

Not yet in the Community Plugins directory. Two ways to install:

BRAT (recommended — gets updates automatically)

  1. Install the BRAT plugin from Community Plugins and enable it.
  2. Command palette → BRAT: Add a beta plugin for testing.
  3. Paste n23eos/advanced_graph_view and confirm.
  4. Settings → Community Plugins → enable Advanced Graph View.

Manual

  1. Download main.js, manifest.json and styles.css from the latest release.
  2. Create <your vault>/.obsidian/plugins/graph-insight/ and drop the three files in.
  3. Reload Obsidian, then enable Advanced Graph View in Settings → Community Plugins.

The folder must be named graph-insight — that is the plugin id, kept stable so existing installs keep their usage history.

Open the graph with the ribbon icon (git-fork) or the command Advanced Graph View: Open graph view.

Requires Obsidian 1.13.0 or newer.

Features

  • Metric-driven node encoding — assign any metric to size, color, or glow: PageRank, open frequency (all-time / 90 / 30 / 7 days), edit recency, note age, in/out links, file size, folder, tag, or cluster. Default: size = PageRank, color = edit recency.
  • WebGL rendering (Pixi.js v8) — 10,000+ nodes at 50+ FPS. Force layout runs in a Web Worker; the UI thread never computes physics.
  • Usage tracking — fully local log of note opens (counted after 5s of active viewing). Day-level buckets compact into months and years. Export to CSV or wipe at any time.
  • Clusters — Louvain community detection with automatic TF-IDF naming, cluster bubbles, per-cluster zoom and hide.
  • Overlays — orphans (no inbound links), dead ends (no outbound), broken links, each with live counters.
  • Search & filters — native graph syntax (path:, tag:, file:, -exclude) plus new operators: opened:>10, opened:30d>5, edited:<30d, created:>2024-01-01, links:>5, inlinks:0, unresolved:>0, cluster:"name". Live highlight while typing, Enter to hard-filter, saved presets.
  • Focus mode — double-click a node to see only its N-hop neighborhood (depth 1–4) with distance-based fading. Esc to exit.
  • Explore mode — travel the graph one link at a time, No Man's Sky style: point the mouse down a link, click, and the camera flies to the note at the other end. See below.
  • Side pane — a toolbar toggle: a click opens the note in a pane beside the graph rather than over it, and the next note you click replaces it in that same pane. The graph never leaves the screen.
  • Follow active note — a toolbar toggle: open a note anywhere in the vault and the camera moves to it and marks it. It stands aside while explore mode is flying the camera, and when the note is filtered out it leaves your filter alone rather than clearing it. In focus mode it rebuilds the neighborhood around the new note instead of panning.
  • Pins — hold a note in place against the physics. Pinned notes are ringed, survive graph rebuilds and restarts, and a lasso selection can be pinned or released in one go.
  • Commands for everything — every layer, the timeline, cluster bubbles, physics, 3D, explore and focus mode have command-palette entries, so you can bind whichever ones you use to your own hotkeys.
  • Color schemes — categorical palettes for folders/tags/clusters and gradient scales for metrics, plus glowing "galaxy" schemes with additive blending. On a light theme the brightest scheme colors are dimmed so nodes stay visible, and switching theme repaints the graph immediately.
  • View presets — bundled recipes you switch between in one click, including four diagnostic ones: Orphans, Broken links and Dead ends light only what matches and name it, and Attention map sizes by PageRank against color by opens in the last 90 days, so a big cold node is a hub you have stopped reading. Save your own alongside them.
  • Timeline — watch your vault grow month by month with a play button and an activity sparkline.
  • Session trail — animated arrows retrace your navigation path through the vault, with replay.
  • Insights dashboard — totals, top notes by opens and PageRank, cooling hubs (important but stale), 90-day activity.
  • Export — current view as PNG, graph data as JSON or GEXF (Gephi), and your settings as a profile you can import into another vault.

Explore mode

Explore mode — hopping from note to note along links

▶ Full-quality video

The camera sits on one note. Its links fan out, the notes at their far ends are the only ones lit and named, and the rest of the vault falls back to a dim backdrop. Sweep the mouse toward a link and it brightens, gains an arrow, and the note it leads to is named at the cursor — click to fly there, and that note becomes the new center.

Aiming is by direction, not by pixel: you point at a link rather than hitting the line, so a hub with fifty overlapping links stays navigable. Nothing moves on hover alone — every trip is a deliberate click.

Backspace retraces the trail, Space lets go of the current note so you can pick the next one anywhere in the vault, Esc leaves. Open puts the current note in a new tab without interrupting the trip. Hops keep the scale you set with the wheel and move only what the camera looks at. Physics pauses and 3D switches on for the duration — at runtime only, your saved settings are never written to.

Permissions and behavior

The plugin review surfaces the capabilities a plugin uses. Here is what this one does and why:

Capability Why it is needed
Vault enumeration The graph is the list of notes and links — every node comes from getMarkdownFiles() and metadataCache. Nothing leaves your machine.
Vault read Note bodies are read only for content: search, via cachedRead.
Clipboard Write-only, and only from the lasso menu item "Copy list of paths". The clipboard is never read.
Dynamic code execution Comes only from the Web Workers (layout and metrics), which are instantiated from inlined source. No user content is ever evaluated as code.

Privacy & network

  • No telemetry. No analytics. Everything stays on your machine.
  • The plugin makes no network requests at all.

Data

Plugin data lives in .obsidian/plugins/graph-insight/data/:

File Contents
usage.json aggregated open counts
positions.json saved node positions and pinned notes

Settings → Advanced Graph View has buttons to export usage as CSV, clear statistics, or reset all plugin data.

Languages

The interface follows Obsidian's own app language. Twelve locales ship with the plugin:

English, Deutsch, Español, Français, Italiano, 日本語, 한국어, Polski, Português (Brasil), Русский, Українська, 简体中文.

Anything else falls back to English, as does a regional variant with no file of its own (fr-CA → fr). Changing the app language takes effect after the plugin reloads.

Translations live in src/i18n/locales/, one file per language, all typed against en.ts — a locale missing a key fails the build, so no release can ship a half-translated file. Only English is native; the rest are machine-translated and corrections are welcome.

Mobile

Not supported. The plugin is marked isDesktopOnly: true: the layout and metrics Web Workers plus a 10k-node WebGL scene are past what mobile Obsidian handles comfortably, and shipping a version that loads but crawls is worse than not loading at all.

Development

npm install
npm run dev        # watch build
npm run build      # typecheck + production build
npm test           # vitest suite
npm run typecheck
npm run lint
npm run verify     # lint + typecheck + tests, same gate as CI

CI (.github/workflows/ci.yml) runs lint, typecheck, tests and a production build on every push and pull request. Tagged pushes additionally run .github/workflows/release.yml, which builds, attests provenance and publishes the release assets.

Architecture notes: force layout (d3-force) and PageRank/Louvain (graphology) each run in their own Web Worker, inlined into main.js as Blob workers. Edges render as a single GPU line-list mesh — position updates write into a vertex buffer instead of rebuilding geometry.

Feedback

The plugin is in beta and bug reports are the fastest way to make it better.

Report a bug or request a feature

The form asks for your plugin/Obsidian version, OS, vault size and the steps you took, so an issue can usually be reproduced without any follow-up questions. No sign-in required; email is optional.

License

MIT

Support

If this project was useful to you, feel free to support further development:

HealthExcellent
ReviewSatisfactory
About
Visualize large vaults with a high-performance WebGL graph that maps usage, hubs, orphaned notes, and missing links using metric-driven node size, color, and glow. Reveal clusters and track local opens and timeline, and filter or zoom into N‑hop neighborhoods for focused analysis.
VisualizationAIResearch
Details
Current version
0.5.2
Last updated
2 days ago
Created
2 weeks ago
Updates
15 releases
Downloads
849
Compatible with
Obsidian 1.13.0+
Platforms
Desktop only
License
MIT
Report bugRequest featureReport plugin
Sponsor
Support
Author
n23eosn23eosn23eos
n23eos.github.io/raincoat_website/
GitHubn23eos
GitHubn23eos
XRaincoat_talk
  1. Community
  2. Plugins
  3. Visualization
  4. Advanced Graph View

Related plugins

InfraNodus AI Graph View

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

Karpathy LLM Wiki

Karpathy's LLM Wiki implementation - multi-page knowledge generation with entity/concept pages and conversational query.

Khoj

An AI personal assistant for your digital brain.

Claudian

Embeds Claude Code/Codex and other local Agents as AI collaborators in your vault.

Excalidraw

Visual PKM powerhouse. Create and edit Excalidraw drawings.

Copilot

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

Fast Note Sync

Real-time sync of your vaults across server, mobile, and web; shareable with anyone; supports REST and MCP integrations to build your personal AI knowledge base.

Breadcrumbs

Visualise the hierarchy of your vault using a breadcrumb trail or matrix view.

Advanced Canvas

Supercharge your canvas experience. Create presentations, flowcharts and more.

Maps

Adds a map layout to bases so you can display notes as an interactive map view.