Karpathy LLM Wiki — Independent Convergence

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

Source

The Shared Architecture

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

Where This Vault Goes Further

Ideas Adopted From Karpathy

Why Convergence Matters

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:

  1. Markdown files > vector databases — at current context window sizes, a well-indexed folder is a better knowledge representation than embeddings or RAG.
  2. The LLM is the maintenance team — wikis die because humans won’t do bookkeeping. LLMs don’t get bored.
  3. Index files > embedding search — at moderate scale (~100-500 pages), a maintained index is more reliable than semantic search.
  4. The filesystem is the database — no infrastructure needed. Git gives you versioning, branching, and collaboration for free.

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.

Tags

ai, epistemology