explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

custom AI agents

[email protected]

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource librarydemofor LLMs

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

More from us

InfloqInfluencer marketingBgBlurPrivacy-first blurOlly SocialSocial AI copilotCeptoryVideo intelligenceBgRemoverBackground removal

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportprivacytermsdata rightssubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • TL;DR — Questions the viral post raised
  • The viral clip (what you are actually seeing)
  • What is an Obsidian vault?
  • Graph view is a map — not a mind
  • The real pattern: self-writing vaults + agents
  • Minimal starter: your first agent-ready vault tonight
  • Open-source vault templates worth cloning
  • What people got wrong (and right) in the replies
  • Obsidian vault vs RAG vs MEMORY.md
  • Related reading
  • Summary
← Back to blog

explainx / blog

What Is an Obsidian Vault? The Viral Neural-Graph Post, Fact-Checked (2026)

A 1.1M-view X post claimed an Anthropic engineer leaked a neural-network Obsidian vault. Community Notes debunked it. Here is what an Obsidian vault actually is, how graph view works, and how to build a self-writing vault with Claude Code.

Jul 7, 2026·9 min read·Yash Thakker
ObsidianPKMClaude CodeAgent MemorySecond BrainKnowledge Management
go deep
What Is an Obsidian Vault? The Viral Neural-Graph Post, Fact-Checked (2026)

A July 2026 post from chewa. claimed "ANTHROPIC'S LEAD ENGINEER ACCIDENTALLY LEAKED HIS PERSONAL OBSIDIAN VAULT" — 8,893 nodes, 4,729 links, overlay captions comparing the graph to 21 inputs, hidden layers, ReLU activation, and a $10-a-month app running decisions inside the company. The clip crossed 1.1M views on X.

X Community Notes rated the central claim misleading: the quoted article describes a 33-year-old science journal editor in Porto — not an Anthropic engineer. Replies called it engagement farming and noted a knowledge graph does not run or decide anything — it is a static visualization of links between notes.

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

This guide does two jobs. First, it fact-checks the viral frame so you do not rebuild the wrong story. Second, it explains what an Obsidian vault actually is and how developers build self-writing vaults that agents maintain — the real pattern behind the hype, without the neural-network cosplay.


TL;DR — Questions the viral post raised

QuestionHonest answer
Was this an Anthropic leak?No — Community Notes tie the source to a Porto journal editor's personal vault, not Anthropic
Is the graph a neural net?No — it is Obsidian Graph View over [[wikilinks]]; static, not executing
Do 8,893 nodes "fire in real time"?No — nodes are markdown files; the animation is UI, not inference
What is an Obsidian vault?A folder of .md files + the Obsidian app to browse, link, and search them
What makes vaults "self-writing"?Agents + conventions — CLAUDE.md, folder rules, cron or /loop, ingest/query/lint
Cost?Free locally; ~$10/mo if you want Obsidian Sync
Same app Anthropic uses internally?Unverified — Anthropic may use markdown knowledge bases; this viral post is not proof

The viral clip (what you are actually seeing)

Screen recording from the chewa. thread — Obsidian's graph camera panning across a dense link structure:

Demo clip (WebM): the viral video shows Obsidian Graph View — each dot is a note, each line is a [[wikilink]]. Impressive PKM hygiene; not a forward pass through hidden layers.

What the overlay text implies vs what is on screen:

Viral claimWhat is actually happening
"21 inputs, 10+ hidden layers, ReLU"Graph layout algorithm positioning nodes — no activation function
"Connections firing in real time"CSS/WebGL animation as you pan and zoom
"Living brain that runs decisions"You (or an agent you configure) read notes and decide; the graph does not
"$2M/year for markdown in folders"Discipline + retrieval quality can be valuable; the salary figure is unverified hype
"Anthropic's internal knowledge system"Debunked by Community Notes on the source article

What is an Obsidian vault?

An Obsidian vault is simply a directory on your filesystem that Obsidian treats as one notebook.

Core anatomy

snippet
my-vault/
├── .obsidian/          # App settings, plugins (optional in git)
├── Daily/              # Your folder convention — you choose
├── Projects/
├── People/
├── inbox.md
└── index.md            # Optional map-of-content (MOC)

Every note is a .md file. Links use [[wikilink]] syntax or standard markdown [label](path.md). Attachments sit beside notes or in an attachments/ folder. Because files are plain text:

  • Git tracks history
  • Claude Code reads and edits directly
  • Any editor works if Obsidian disappears tomorrow

Obsidian adds search, graph view, backlinks pane, plugins (Templater, Dataview, Tasks), and optional Sync / Publish. The vault is yours; the app is the lens.

Vault vs Notion vs Files.md

Obsidian vaultNotionFiles.md
StorageLocal .md filesCloud databaseLocal .md in browser
Links[[wikilinks]] + graphRelational DB linksMinimal structure
Agent-friendlyExcellent — paths + gitAPI requiredExcellent — by design
PhilosophyBuild your systemTeam wiki / DBRadical simplicity

See Files.md: local-first note-taking for the anti-complexity pole; Obsidian sits in the middle — powerful, but you own the scaffolding cost.


Graph view is a map — not a mind

Obsidian Graph View renders notes as nodes and [[wikilinks]] as edges. Filters can hide orphans, tag subsets, or color by folder.

What it helps with:

  • Spot orphan notes with no links
  • See clusters (projects, people, concepts)
  • Navigate serendipitous connections while writing

What it does not do:

  • Run embeddings search (unless you add plugins)
  • Execute agent tools
  • Decide anything — no forward pass, no weights, no training

A vault with 8,893 notes and 4,729 links is a large, well-linked PKM corpus — impressive maintenance — not a replacement for Claude or a company decision engine. Critics on the viral thread (David Dimlich and others) made exactly this point: "A knowledge graph doesn't run or decide anything. It's a static visualization."


The real pattern: self-writing vaults + agents

The useful idea buried in the viral post is older than the neural-network overlay: point an agent at a markdown vault and let it maintain structure while you capture raw thought.

Karpathy LLM Wiki (the intellectual source)

Andrej Karpathy's LLM Wiki gist defines three layers:

  1. Raw sources — immutable drops (articles, transcripts, clips)
  2. Wiki layer — agent-maintained summaries, entity pages, synthesis
  3. Schema — CLAUDE.md / AGENTS.md defining ingest, query, lint

Operations: ingest (new source → update 10–15 linked pages), query (read wiki, cite), lint (contradictions, stale claims, orphans). explainx.ai's Karpathy LLM Wiki guide walks the full pattern.

Google's OKF — enterprise formalization

Open Knowledge Format (OKF) (June 2026) standardizes the same shape: markdown + YAML frontmatter, index.md, log.md, typed concept pages. Karpathy's gist is the idea; OKF is the interchange spec.

Chewa's "Self-Writing Vault" frame (Jun 29, 2026)

The article chewa. quoted — "The Self-Writing Vault: 8 Rules for Pointing Claude at Obsidian and Letting It Run Without You" — describes:

  • One evening of setup
  • A vault that files itself at 7 a.m.
  • A model that opens every session already knowing your work

That maps to mechanics builders already ship:

Rule (conceptual)Implementation
Folder semantics00-inbox/, 10-raw/, 20-wiki/, 30-pdca/ (pdca-llm-wiki)
Agent briefRoot CLAUDE.md loaded every Claude Code session
Scheduled maintenance/loop 24h or cron calling ingest + lint
Machine-readable notesFrontmatter, [[wikilinks]], "for future Claude" preambles
Separation raw vs wikiNever mutate sources; synthesize in 20-wiki/
VerificationLint pass for broken links, stale dates, contradictions
Session continuityHooks on SessionStart / SessionEnd (Claude's Journal pattern)
Start tonightClone a template vault; add 10 notes; run first ingest

None of this requires Obsidian-specific infrastructure — the vault is a folder. Obsidian is optional UI on top.


Minimal starter: your first agent-ready vault tonight

Step 1 — Create the folder

bash
mkdir -p ~/vault/{00-inbox,10-raw,20-wiki,90-system}
cd ~/vault && git init

Open ~/vault in Obsidian (File → Open folder as vault). Free tier is enough.

Step 2 — Add CLAUDE.md

markdown
# Vault agent brief

## Folders
- `00-inbox/` — quick captures, unprocessed
- `10-raw/` — immutable sources (PDF excerpts, transcripts)
- `20-wiki/` — synthesized entity and concept pages
- `90-system/` — rules and index

## On ingest
1. Read new file in `00-inbox/` or `10-raw/`
2. Update `20-wiki/` entity pages and `index.md`
3. Append one line to `90-system/log.md`

## On query
Search `index.md` first, then drill into linked wiki pages. Cite paths.

## On lint
Report orphan wiki pages, broken [[links]], claims older than 90 days without refresh.

Step 3 — Wire Claude Code

bash
cd ~/vault
claude

Claude Code reads CLAUDE.md automatically when cwd is the vault. For scheduled filing:

bash
/loop 24h run vault lint, process 00-inbox, update index.md

See Claude Code loops official guide for /loop vs /goal vs turn-based patterns.

Step 4 — Optional Obsidian plugins

PluginWhy
TemplaterDaily note templates with frontmatter
Periodic NotesJournal cadence
Local REST APIHTTP read/write for external agents
TasksCheckbox queries across vault

Step 5 — Connect to agent memory elsewhere

Vault notes complement — not replace — repo-level MEMORY.md and Karpathy-style wikis. Code projects keep CLAUDE.md; life and research keep the Obsidian folder.


Open-source vault templates worth cloning

ProjectWhat you get
gyeorye/pdca-llm-wikiDrop-in vault + PDCA retrospectives + rule files
obsidian-second-brainSelf-rewriting vault skill, AI-first note rules
jgcosme/claude-obsidian-memoryClaude Code plugin — hooks + vault-search skill
dys5315/domvaultSelf-synthesis loop + optional Constellation publish
cast-claudes_journalPer-date journal entries as graph nodes

These repos prove the pattern is markdown discipline + agent contracts — not a proprietary neural appliance.


What people got wrong (and right) in the replies

Wrong:

  • Treating graph animation as ML inference
  • Assuming Anthropic internal ops from an unverified screenshot
  • Expecting a $10/mo app to replace agent harness engineering

Right:

  • Large linked vaults are genuinely hard to maintain — automation helps
  • Markdown + agents is how many builders store memory in 2026
  • Discipline over infrastructure — chewa.'s quoted piece emphasizes three years of filing, not a custom server

@ProjectorBach — "Every 'leak' is a marketing maneuver" — is the right prior when a post pairs a sensational employer with a product screenshot and no primary source.


Obsidian vault vs RAG vs MEMORY.md

ApproachBest when
Obsidian vault (wiki pattern)Personal knowledge, cross-linked concepts, human browse + agent lint
Vector RAGHuge corpora where grep and wikilinks fail
MEMORY.md in repoCoding-agent session facts tied to one codebase
OKF bundlesOrg-wide typed concept graphs across teams

Below ~50K–100K tokens of dense wiki pages, Karpathy and implementers argue pure context beats naive RAG. Obsidian vaults often sit under that threshold per domain.


Related reading

explainx.ai guides

  • Karpathy LLM Wiki: Agent Memory Pattern
  • Google Open Knowledge Format (OKF)
  • What Is MEMORY.md?
  • Files.md: Local-First Notes
  • Claude Code Loops Official Guide
  • Build a Personal AI System
  • OpenKnowledge / Inkeep local-first wiki

Primary sources

  • Obsidian Help — Vaults
  • Karpathy LLM Wiki gist
  • chewa. viral thread (Jul 5, 2026) — with Community Notes context

Summary

The 1.1M-view "Anthropic engineer leaked Obsidian vault" post is not verified — Community Notes link the underlying article to a Porto science journal editor, not Anthropic. The video shows Obsidian Graph View, a static wikilink map, not a neural network running company decisions.

An Obsidian vault is a folder of markdown files you own, with an app for navigation and plugins. The productive takeaway is the self-writing vault: CLAUDE.md conventions, folder semantics, ingest/query/lint loops, and optional /schedule maintenance — patterns explainx.ai documents via Karpathy's LLM Wiki and OKF.

You can open Obsidian tonight, create a vault, add ten notes, link them, and point Claude Code at the folder. That is the real setup — no leaked brain required.

Practical test: after one week, ask Claude "What contradictions exist between my project notes?" If it cannot answer from 20-wiki/ and index.md, your ingest rules need tightening — not a bigger graph animation. The vault pays off when lint catches drift, not when graph view looks like a brain scan.

Community Notes status, Obsidian pricing, and referenced repo layouts reflect publicly available information as of July 7, 2026.

Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Jun 14, 2026

Karpathy LLM Wiki: The Pattern Behind Agent Memory (Complete Guide)

Don't re-discover knowledge every query—let the LLM compile and maintain a wiki. Karpathy's gist defines raw sources, an LLM-owned wiki layer, and a CLAUDE.md schema. Here is the full pattern, when to use it vs RAG, and 20+ implementations.

May 21, 2026

Files.md: the local-first, LLM-friendly note-taking app that lives in .md files (2026)

Own your data as plain local files. Own the software that opens them. Grow your knowledge with files and your own brain. Artem Zakirullin's 5-year project proves that restrictions foster creativity—2.3k stars, zero data leaves your device.

Jul 27, 2026

Sakana Fugu in Claude Code: Setup, Pricing, and Limits

Sakana AI now exposes Fugu and Fugu-Ultra v1.1 through a Claude Code-compatible interface. This guide shows the one-command and manual setup paths, then explains pricing, routing, privacy, and the compatibility details hidden behind the familiar terminal UI.