LLM Wiki — Karpathy Knowledge Base Pattern
Experimental skill — iterating.
Authored by Lewis Liu (
lylewis@outlook.com) · Inspired by
Karpathy's llm-wiki Gist
Core idea
Instead of RAG (re-retrieving raw docs on every query), the LLM compiles raw sources into a persistent, cross-linked wiki. Every ingest, query, lint, and audit pass makes the wiki richer. Knowledge compounds — and the human stays in the loop via a structured feedback channel instead of ad-hoc corrections that get lost.
- You own: sourcing raw material, asking good questions, steering direction, filing feedback on anything the AI got wrong.
- LLM owns: all writing, cross-referencing, filing, bookkeeping, and acting on your feedback.
The wiki is a living artifact with
five operations —
,
,
,
,
. Every session starts by reading
and
.
Directory layout
<wiki-root>/
├── CLAUDE.md ← Schema: scope, conventions, current articles, gaps
├── log/ ← Per-day operation log (one file per day)
│ ├── 20260409.md
│ └── 20260410.md
├── audit/ ← Human feedback inbox (one file per comment)
│ ├── 20260409-143022-claude-code-size.md
│ └── resolved/ ← Processed feedback, archived with resolution notes
├── raw/ ← Immutable source documents (LLM reads, never writes)
│ ├── articles/
│ ├── papers/
│ ├── notes/
│ └── refs/ ← Pointer files for large binaries kept outside raw/
├── wiki/ ← LLM-generated knowledge (LLM writes, you read)
│ ├── index.md ← Master catalog — every page, structured by category
│ ├── concepts/ ← Concept/topic pages (split into subfolders when >1200 words)
│ ├── entities/ ← People, tools, papers, organizations
│ └── summaries/ ← Per-source summary pages
└── outputs/
└── queries/ ← Query answers (promote durable ones to wiki/)
is the
schema file — the single most important configuration. It tells the LLM the wiki's scope, naming conventions, current article list, open questions, and research gaps. Read
references/schema-guide.md
for what to put in it. Read it at the start of every session.
Core principles
Four rules govern everything below. If a future instruction contradicts one, flag it to the user before acting.
1. Divide and conquer
A single concept page should never try to cover a complex topic end-to-end. Target: 400–1200 words per page. When a topic would blow past that:
- Create a subfolder:
- Put a short index page at
wiki/concepts/<topic>/index.md
— definition, list of sub-pages, one-line summaries
- Put each aspect in its own file:
wiki/concepts/<topic>/<aspect>.md
- In , show the hierarchy via indented bullets
Example layout (from a real wiki):
wiki/tech/claude-code/
├── index.md (overview + links to sub-pages)
├── Claude_Code_Architecture.md
├── Claude_Code_Agent_Framework.md
├── Claude_Code_Bridge_System.md
├── Claude_Code_Query_Engine.md
├── Claude_Code_Skills_Plugins.md
├── Claude_Code_State_Management.md
└── Claude_Code_Tool_System.md
One fat file covering all seven aspects would be unreadable and unlinkable. Seven focused files + an index page give you navigation, selective reading, clean backlinks, and small audit targets.
2. Mermaid for diagrams, KaTeX for formulas
- Any flow, sequence, hierarchy, or state diagram must be written in mermaid — never ASCII art. ASCII boxes rot fast and are impossible to annotate.
```mermaid
flowchart LR
A[raw/article.md] --> B[summary]
B --> C[concept page]
C --> D[index.md]
```
- Any formula must be written in KaTeX: inline or block .
Both render in the web viewer (server-side KaTeX, client-side mermaid) and in Obsidian with default settings.
3. Raw file policy
Small text-based sources (md, txt, small pdfs, small images) → copy into
.
Large binaries (videos, model weights, installers, datasets, large PDFs >10 MB) → do not copy. Instead:
- Create a pointer file at with:
yaml
---
kind: ref
external_path: /Volumes/external/models/llama-3-70b/
size: ~140 GB
---
followed by a short description of what it is and why it matters to this wiki.
- Wiki pages cite exactly like any other source.
This keeps the wiki repo git-friendly and portable.
4. Audit is the human feedback surface
The wiki is AI-written; it will be wrong sometimes. The raw sources are human-written; they will contradict each other. The
directory is how humans correct both without losing the corrections in chat history.
- Humans file feedback via the Obsidian plugin or the web viewer. Each feedback is one file in with YAML frontmatter (anchor, target, severity) and a markdown body.
- The AI must periodically run the op — never silently ignore files.
- When feedback is applied, the file moves to with a section appended and a log entry recorded in .
See
references/audit-guide.md
for the full file format and processing workflow.
The five operations
Every action on the wiki is one of these five. Each appends an entry to the current day's log file (
).
1.
(Re)structure wiki content from existing
material — including splitting oversized pages, merging near-duplicates, and rebuilding
.
When to run: after a big ingest batch, when an existing page has outgrown 1200 words, when
no longer reflects reality, or when the user says "clean up the wiki".
Steps:
- Read , , and every file in the target subtree.
- For each page over ~1200 words: plan a split into with an index + sub-pages. Confirm the plan with the user before writing.
- For each pair of near-duplicate pages: propose a merge. Confirm, then rewrite.
- Regenerate so every page is listed exactly once.
- Log:
## [HH:MM] compile | <what you did — files touched, splits, merges>
2.
Add a new source. One source typically touches 5–15 wiki pages.
Steps:
- Save source to the right subfolder:
- web article →
- paper → (extracted text for big PDFs)
- note →
- large binary → pointer file (see raw file policy)
- Read the source in full.
- Create (200–400 words — key takeaways, not a rewrite; see
references/article-guide.md
).
- Create or update relevant concept pages in . Respect divide-and-conquer: if a concept page would exceed 1200 words, split instead of cramming.
- Create or update entity pages in for any new people / tools / papers / organizations referenced.
- Update so the new pages appear under the right category.
- Log:
## [HH:MM] ingest | <slug> — <one-line description> (touched N pages)
3.
Answer a question grounded in the wiki, not general knowledge.
Steps:
- Read . Scan for relevant pages by category.
- Read the identified pages in full; follow one level of wikilinks.
- If the wiki doesn't have enough material, say so and suggest what to ingest next instead of making something up.
- Synthesize the answer, citing pages inline with .
- Save to
outputs/queries/<YYYY-MM-DD>-<question-slug>.md
.
- If the answer is durable (a comparison, analysis, or new synthesis) → promote a cleaned-up version to , add to .
- Log:
## [HH:MM] query | <question-slug>
(and a separate line if promoted).
4.
Health check. Run:
bash
python3 scripts/lint_wiki.py <wiki-root>
The script reports:
- Dead wikilinks — where doesn't exist
- Orphan pages — pages with no inbound wikilinks
- Missing index entries — pages not listed in
- Frequently-linked missing pages — referenced 3+ times but no page
- log/ shape — stray files or wrong filenames in
- audit/ shape — malformed YAML frontmatter in
- Audit target resolution — every open audit's file must exist
For each issue, propose a fix, confirm with the user, then apply. Log:
## [HH:MM] lint | <N> issues found, <M> fixed
.
5.
Process human feedback from
.
Steps:
- Run
python3 scripts/audit_review.py <wiki-root> --open
to get a grouped list.
- For each open audit, read the file. Use the / / window to locate the exact range in the target file (line numbers may have drifted).
- Decide the action:
- Accept: apply the correction to the target file.
- Partially accept: apply what makes sense, note the rest in the resolution.
- Reject: explain why in the resolution — the feedback may be based on a misreading of scope or a contradictory source.
- Defer: add to "Open research questions" and leave the audit in place with a comment.
- For applied audits, append a section to the audit file:
markdown
# Resolution
2026-04-10 · accepted.
Fixed the file count (was "~1,900", corrected to "~1,800" per commit abc123).
Updated: tech/Claude_Code.md lines 47–48.
- Move the file from to . Filename unchanged.
- Log per resolved audit:
## [HH:MM] audit | resolved 20260409-143022-a1b2 — <one-line what>
- Never delete audit files. Rejected ones still go to with the rejection rationale in their resolution section — that's valuable history.
See
references/audit-guide.md
for the full audit file format.
Tooling
| Tool | Purpose |
|---|
| Obsidian | IDE for browsing the wiki; graph view shows connections |
| Obsidian plugin — select text → add feedback → writes to |
| Local Node.js server — preview the wiki with mermaid/math rendered; select → feedback → |
| Bootstrap a new wiki directory tree |
| Seven-pass health check |
| Group open/resolved audits by target file |
| qmd | Optional local semantic search (useful at >100 pages) |
The Obsidian plugin and the web viewer both write audit files in the same format with the same anchor algorithm, so feedback filed from either place can be resolved by either place.
Starting a new wiki
bash
python3 scripts/scaffold.py <wiki-root> "<Topic Title>"
Creates the full tree (including
,
,
), a blank
based on the new template, and a blank
with the recommended category layout.
After scaffolding:
- Fill in — define scope, naming conventions, initial research questions.
- Start ingesting sources.
- Ask questions to build up ; promote durable answers.
- Run periodically.
- Run whenever new feedback accumulates.
format
The LLM rebuilds
on every compile and touches it on every ingest. Format:
markdown
# Index — <Topic>
> One-sentence scope of the wiki.
## 🔖 Navigation
- [[#Concepts]] · [[#Entities]] · [[#Summaries]] · [[#Open Questions]]
## Concepts
### <Category A>
- [[concepts/Foo]] — one-line summary
- [[concepts/Bar/index|Bar]] — (folder-split) one-line summary
- [[concepts/Bar/aspect-1]] — ...
- [[concepts/Bar/aspect-2]] — ...
### <Category B>
- ...
## Entities
- [[entities/Andrej Karpathy]] — AI researcher, author of the llm-wiki pattern
## Summaries (chronological)
- 2026-04-09 — [[summaries/llm-wiki-gist]] — Karpathy's original Gist
## Open Questions
- Q1: ...
Rules:
- Every wiki page must appear exactly once in . enforces this.
- Folder-split concepts show hierarchy via indented bullets.
- + together are what the AI reads at session start.
format
See
for full details. Minimum:
- One file per day:
- H1 = the date; H2 per entry with
## [HH:MM] <op> | <one-line description>
- Ops: , , , , , , ,
Quick grep across history:
grep -rh "^## \[" log/ | tail -20
.
Use cases
- Research deep-dive — reading papers/articles on a topic over weeks; the wiki evolves with your understanding, and the audit trail keeps AI mistakes from silently accumulating
- Personal wiki — journal entries, notes, ideas compiled into a personal encyclopedia; comment on anything you disagree with later, the AI corrects it
- Team knowledge base — fed by Slack threads, meeting notes, docs; team members file corrections through the web viewer
- Reading companion — filing each book chapter as you go; builds a rich companion wiki by the end
References
references/schema-guide.md
— What to put in
references/article-guide.md
— How to write good wiki articles (length, wikilinks, mermaid, math, divide-and-conquer)
- — The folder convention
references/audit-guide.md
— Audit file format, anchor strategy, processing workflow
references/tooling-tips.md
— Obsidian setup, Web Clipper, qmd, plugin + web installation