Show HN: MindBase – an LLM that maintains a wiki from your notes and papers MindBase, an AI research assistant that builds and maintains a persistent markdown wiki from user-supplied sources, is now in early access with beta feedback expected in Q3 2026. The tool implements Andrej Karpathy's LLM-Wiki pattern, using an LLM to read, cross-reference, and synthesize sources into structured wiki pages that compound knowledge across sessions, avoiding the re-derivation typical of RAG systems. An AI research assistant that builds and maintains a wiki from your sources.Not RAG-in-a-vector-DB. A real markdown wiki on your disk, that an LLM gardens for you between conversations. MindBase implements Andrej Karpathy's LLM-Wiki pattern https://x.com/karpathy/status/1911080091498963196 as a product. You feed it sources papers, articles, thoughts . The LLM reads, cross-references, flags contradictions, and writes structured wiki pages. Later, when you ask a question, the wiki already has the synthesized answer — no vector search re-derivation at query time. Status: Early access. Beta for feedback 2026-Q3 . Data model + core loop stable; some UI features still in v1 → v2 migration. Why MindBase why-mindbase How it works 30 seconds how-it-works-30-seconds What makes it different what-makes-it-different Prerequisites prerequisites Install — choose your AI editor install--choose-your-ai-editor First project 2 minutes first-project-2-minutes Core workflows core-workflows Working with multiple projects working-with-multiple-projects Web UI optional companion web-ui-optional-companion Feature matrix by editor feature-matrix-by-editor Where your data lives where-your-data-lives Architecture at a glance architecture-at-a-glance Troubleshooting troubleshooting Roadmap roadmap Beta feedback beta-feedback License license You read a lot. Papers, articles, tweets, docs. You want to remember them, connect them, form opinions from them. Today you have two bad options: Notion / Obsidian / Roam: Passive containers. You do all the organizing. AI features are bolted-on generation, not maintenance. NotebookLM / Perplexity Pages / ChatGPT search: RAG-based. Nothing accumulates. Every question re-derives the answer from raw sources. MindBase is the third option: the LLM actively maintains a persistent, structured wiki as you feed it sources. Knowledge compounds. Your context.md gets sharper every time you contribute. The AI remembers you across sessions because your beliefs are written down in markdown files — not stored in a chat history that gets summarized away. Think of it as a personal Wikipedia that an AI intern writes for you , kept up to date, cross-referenced, and honest about what it doesn't know. Three physical layers on disk Karpathy's model : Layer 1 — sources/ You add these. Append-only. LLM reads, never rewrites. ├─ contributors/ Your thoughts, dated per-user like a lab notebook ├─ research/ Wiki pages the LLM writes concepts, entities, syntheses └─ raw/ PDFs, URL captures, pastes — original binaries Layer 2 — README.md The rules of your wiki. You edit. LLM reads at every op. context.md The synthesized current truth. LLM writes. You read. index.yaml Auto-generated file catalog. LLM maintains. Layer 3 — logs/ Chronological log of every operation. LLM appends. artifacts/ Generated outputs: daily briefs, exports, lint reports. Three operations the AI can run: | Operation | What happens | |---|---| Contribute | You feed a thought / PDF / URL. LLM reads, discusses key takeaways with you, updates 5-15 relevant wiki pages, appends log. | Ask | You ask a question. LLM reads your context.md first already-synthesized truth , then drills into cited source pages. Cited answers with wikilink provenance. | Lint | LLM audits the whole wiki for contradictions, stale claims, orphan pages, missing cross-references, gaps that need investigation. | They form a loop — good answers and lint findings flow back in as new contributions, so the wiki compounds: php flowchart LR C "contribute