Knowledge Management Approaches vs LLM Wiki
Comparison of 9 knowledge management approaches relative to the LLM Wiki pattern. For each approach: what it is, how it differs from LLM Wiki, strengths, weaknesses, and when to choose it.
At a Glance
| Approach | What it is | Core difference from llm-wiki | Best when… |
|---|---|---|---|
| rag | Query-time chunk retrieval via vector similarity | RAG re-derives every answer; LLM Wiki compiles once and compounds | Large, changing corpora |
| GraphRAG | RAG over an LLM-extracted knowledge graph | GraphRAG queries typed edges; LLM Wiki reads human-readable prose | Multi-hop reasoning |
| llms.txt | Static /llms.txt site index for LLMs | One-time static file; LLM Wiki is a living, maintained personal KB | Making website docs accessible to inference-time LLMs |
| obsidian + plugins | Local-first markdown with wikilinks and graph view | obsidian is the viewer/IDE; LLM is the author/maintainer | Visualizing an LLM-maintained wiki |
| **[[notion | Notion AI]]** | Cloud workspace with built-in AI agents | Proprietary blocks behind rate-limited API; LLM Wiki is lock-in-free local markdown |
| **[[logseq | Logseq]]** | Open-source outliner-first PKM | Outliner format; LLM Wiki pattern is renderer-agnostic |
| **[[memex | Memex (1945)]]** | Vision of a personal associative knowledge store | Bush’s trails are human-built; LLM Wiki trails are LLM-maintained |
| Traditional wikis | Human-maintained wiki engines (MediaWiki, DokuWiki) | Humans do all labor; LLM Wiki transfers maintenance to LLM | Collaborative human-edited bases |
| Confluence / SharePoint | Enterprise KM platforms | Organization-scale permissions/governance; LLM Wiki has none | Enterprise compliance, Jira integration |
The Core Distinction
The real split is when knowledge is processed:
- Ingest-time compilation → llm-wiki. You pay the synthesis cost once, then the knowledge is pre-linked, de-duplicated, contradiction-checked, and ready. Cross-references persist.
- Query-time retrieval → rag, GraphRAG, most enterprise tools. You pay the cost on every question, and the system re-synthesizes from scratch every time.
The consequence: compile-time systems can find contradictions, surface inferences, and let knowledge compound. Query-time systems cannot — they are stateless between queries.
Detailed Profiles
RAG
- Timing: query-time retrieval and re-synthesis on every question
- Compounding: none — queries are independent
- Human effort: upload documents only
- Scale: millions of documents
- Hallucination risk: medium (chunk boundaries, embedding drift, top-k lottery)
- Cross-references: none
- Contradiction detection: none
- When to choose: large volatile corpora, streaming data, simple fact retrieval
- Why llm-wiki beats it for personal knowledge: answers compound instead of being re-derived, cross-references persist, contradictions accumulate visibly instead of silently
- Related: lightrag and hipporag are graph-enhanced RAG systems that move in the same direction as llm-wiki by adding structure
GraphRAG (Microsoft)
- Upgrade over RAG: extracts an entity graph + community summaries during indexing
- Strength: typed edges and hierarchical summaries enable multi-hop reasoning
- Weakness: significantly more expensive to index (~65-88% entity coverage), graph quality depends on extraction model, no human-readable artifact
- Relationship to llm-wiki: GraphRAG provides the query-time layer; llm-wiki’s markdown pages are the ingest-time synthesis. They can complement each other
- When to choose: corpus-wide thematic analysis, regulatory libraries, complex reasoning
- Why llm-wiki may still be preferable for personal use: index cost is prohibitive for small personal corpora; markdown pages are more readable than a graph database
llms.txt (Jeremy Howard)
- What it is: a
/llms.txtmarkdown file at a website’s root, providing LLM-friendly summaries of pages - Relationship to llm-wiki: both use markdown for machine readability; llms.txt is a thin one-file index for inference time, llm-wiki is a deep multi-file maintained knowledge base
- Strength: simple, standard-deployable, complementary to robots.txt/sitemap.xml
- Weakness: static, no compounding, no cross-referencing, no contradiction detection
- When to choose: own a website and want LLMs to understand your documentation accurately
obsidian + Plugins
- Karpathy’s explicit framing: Obsidian is the viewer for his LLM Wiki. The LLM is the programmer, Obsidian is the IDE, the wiki is the codebase
- Strengths: graph visualization, 1,800+ plugins, local-first, portable markdown
- Limitation: graph view shows manual-link topology only; no typed entities or semantic extraction
- Relationship to llm-wiki: complementary and almost always paired. The pattern is renderer-agnostic, but obsidian is the most common front-end
- When to choose: visualizing, browsing, or manually supplementing an LLM-maintained wiki
Notion AI
- Architecture: proprietary block ecosystem, cloud-only, rate-limited API
- Cost: 0 for obsidian + llm-wiki
- Limitation for AI agents: 3 RPS API limit means reading 100 pages takes 30+ seconds; obsidian vault is readable in under 2 seconds via filesystem
- Strength: real-time collaboration, relational databases, polished UI
- When to choose: 3+ humans collaborating on shared structured docs
- Why llm-wiki beats it for personal knowledge: zero API cost, local files, no vendor lock-in, native OKF alignment
Logseq
- Format difference: outliner (
-prefix per line) vs flat markdown. The llm-wiki pattern is renderer-agnostic - Unique strength: every block is independently addressable by UUID — excellent for LLM appends without restructuring
- Namespace style: triple-underscore namespaces — serialization quirk, not a pattern break
- When to choose: outliner thinking, daily journal workflows, AGPL-3.0 licensing, open-source preference
- Relationship to this vault: this vault is obsidian-native for practical reasons, but the core pattern is identical regardless of viewer
Memex (Vannevar Bush, 1945)
- Historical significance: first articulation of the personal associative knowledge store. Bush’s “trails” prefigure hypertext and wikilinks
- The gap Bush did not solve: who does the maintenance? llm-wiki’s answer: the LLM handles it
- Why it matters: it is not merely an ancestor — it provides the philosophical justification for the pattern. Cross-references are as valuable as the documents themselves
- Stays in concept pages, not as a tool page, because it is a historical idea, not an active system
Traditional Wikis (MediaWiki, DokuWiki)
- Core difference: human labor vs LLM labor. Humans write, link, and garden every page
- DokuWiki lesson: founders note that humans abandon wikis when maintenance burden exceeds perceived value. llm-wiki solves this by making maintenance near-zero cost
- When to choose: collaborative human-edited knowledge, public wiki at scale, or scenarios needing fine-grained user permissions
Confluence / SharePoint
- Enterprise-only concerns: permissions, audit trails, approval workflows, compliance (HIPAA/FedRAMP/SOC 2)
- llm-wiki relationship: the two address completely different needs. A team might use BOTH — llm-wiki for curated knowledge, Confluence/SharePoint for compliance documents
- When to choose: teams of 500+, regulated industries, Jira integration, corporate governance requirements
Decision Matrix
| Criterion | LLM Wiki | RAG | GraphRAG | llms.txt | Obsidian | Notion | Logseq | |-----------|----------------------|------------|----------|----------|----------------------|-----------------|-----------------| | LLM writes content | Yes | No | Partial | No | No | Yes | No | | Knowledge compounds | Yes | No | No | No | Manual | No | Manual | | Pre-compiled synthesis | Yes | No | No | No | No | No | No | | Local markdown | Yes | No | No | N/A | Yes | No | Yes | | Cross-references | Auto | None | Typed edges | No | Manual | No | Manual | | Contradiction detection | Lint | No | Limited | No | No | No | No | | Query cost (per query) | 0.003 | 0.01 | 0.03 | 0-15K-40K-0 | 0 | 0 | 100 | 200 | 0 | 0 |
This matrix shows why llm-wiki occupies a unique position: it is the only approach that combines local-file portability, LLM-authored content, compounding cross-references, contradiction detection, and zero ongoing cost for personal use.
Cost Breakdown (confidence: high)
| Tier | RAG | LLM Wiki | GraphRAG | Agentic Search |
|---|---|---|---|---|
| MVP / small | 40K setup, 3-6 weeks | 2K setup, hours | 80K setup | 200K |
| Production | 120K setup, 8-16 weeks | 500 compile (10K docs) | 150K setup | 500K |
| Enterprise | 300K+, 4-9 months | Not recommended at this scale | 300K | $500K+ |
| Monthly ops (mid) | 3,500 | 50 | 5,000 | 15,000 |
Per-query costs at production scale:
- RAG: 0.01 (300-800ms)
- LLM Wiki: 0.003 (200-500ms)
- Agentic Search: 0.30 (2-30s)
Key insight: LLM Wiki’s 15K+ entry barrier limits it to funded teams and enterprises. LLM Wiki is accessible to any individual with a markdown editor. (Sources: ZTABS 2026, DevStudio, OrtemTech, Pasquale Pillitteri 2026)
Implications
Choosing between these approaches is not about “which is better” — it is about matching the lifecycle of your knowledge to the architecture:
- Stable, deep knowledge that should compound → llm-wiki
- Large, volatile corpus with simple queries → rag
- Multi-hop reasoning across a corporate knowledge graph → GraphRAG
- Need multi-user collaboration with permissions → Notion / Confluence / SharePoint
- LLM access to website docs → llms.txt
- Open-source outliner preference → Logseq
The emerging 2026 consensus: use both llm-wiki and rag in the same system, routing stable knowledge through the wiki and volatile data through retrieval.
Sources
Related
- eva-brain-desktop-app — Eva-brain — Desktop App for LLM Wiki