This vault and Karpathy’s “LLM Wiki” pattern arrived at the same architecture independently. When two systems converge from different starting points, the shared structure is likely load-bearing.
Links: Obsidian Plugin Setup, Working With Claude, Cyborg Model, The Context Cache Hierarchy, The Three-Layer Method
Both systems independently arrived at:
| Pattern | Karpathy | This Vault |
|---|---|---|
| Knowledge representation | Folder of markdown files | Same |
| Master map | index.md |
INDEX.md |
| Agent schema | CLAUDE.md / AGENTS.md |
CLAUDE.md |
| Cross-references | LLM-maintained links between pages | **Links:** sections + ## Tags with back-links |
| Tag/category system | Tags on pages | Tag index files in tags/ with reverse-links |
| Visual frontend | Obsidian | Obsidian |
| Version control | Git repo | Git repo |
| Ingest operation | Drop raw source, LLM processes into wiki | raw/ folder + /vault-ingest skill |
| Query operation | Ask questions, get answers with citations | Normal vault interaction |
| Lint/health check | Periodic LLM health-check | /vault-heartbeat skill |
| Log | log.md (chronological) |
logs/ folder |
/vault-sync updates INDEX, tags, cross-links in one pass. Karpathy’s workflow is manual./debate-review is a structured pipeline for a specific source type. /vault-ingest dispatches by content type (article, YouTube, raw file). Karpathy’s ingest is generic./vault-to-project pushes vault research into project CLAUDE.md files. Karpathy doesn’t address how wiki knowledge flows into working codebases.memory/ system survives across conversations. Karpathy’s “hot cache” is a single file inside one project.FROM [[tags/tagname]].raw/ folder — separation of immutable source material from processed wiki pages. Content was growing inside the vault structure; centralizing it in raw/ keeps the wiki clean and gives a clear ingest pipeline.marp), Obsidian plugin available.raw/. Manual path when automated fetch is bot-blocked.Independent convergence from different starting points (Karpathy: research paper wikis; this vault: philosophy/economics/gaming research + debate analysis) suggests the shared patterns are structurally necessary, not stylistic choices:
Karpathy frames this through Vannevar Bush’s Memex (1945) — a personal knowledge store with associative trails between documents. Bush’s vision was closer to this than to what the web became: private, actively curated, with the connections between documents as valuable as the documents themselves. The missing piece was who does the maintenance. The LLM handles that.