AIToday

MindBase: AI wiki that learns from your notes, now in beta

Hacker News4h ago
MindBase: AI wiki that learns from your notes, now in beta

Key takeaway

MindBase, an AI research assistant that builds and maintains a personal markdown wiki from your sources, entered early access and beta feedback in 2026-Q3. Unlike RAG tools that re-derive answers each time you ask or passive note-taking apps where you organize manually, MindBase has an LLM actively synthesize and update wiki pages as you contribute sources, so knowledge compounds over time — your synthesized context.md grows sharper with each addition. The product runs entirely on your machine with no cloud upload or telemetry and installs as an MCP server across multiple AI editors including Claude Code, Cursor, and Windsurf.

Summaries like this, in your inbox every morning.

Sign up free →

3 Key Points

  • What happened

    MindBase, a new AI research assistant, launched in early access and beta for feedback in 2026-Q3. It builds and maintains a markdown wiki from your sources (papers, articles, notes) by having an LLM actively synthesize and update wiki pages as you feed it content — not using retrieval-augmented generation (RAG) in a vector database, but instead writing real markdown files on your disk that the AI gardens between conversations.

  • Why it matters

    Unlike note-taking apps (Notion, Obsidian) where you do all organizing, or RAG tools (NotebookLM, Perplexity) that re-derive answers from raw sources each time you ask, MindBase's wiki compounds: knowledge accumulates in a synthesized context.md file that grows sharper with each contribution. You get faster, more consistent answers over time because the answer already exists in the wiki rather than being re-derived at query time. The product implements Andrej Karpathy's LLM-Wiki pattern and runs entirely on your machine with no cloud upload, signup, or telemetry.

  • What to watch

    MindBase ships as an MCP (Model Context Protocol) server installable on Claude Code, Cursor, Windsurf, Cline, Continue.dev, and other MCP-compatible editors via a one-line config (no clone or build required). Claude Code receives the flagship experience with 12 slash commands and 5 sub-agents that structure the 8-step ingest workflow. The core data model and loop are stable; some UI features are still migrating from v1 to v2. Source code is available on GitHub at frankchu91/mindbase.

In Depth

MindBase is a local-first AI research assistant that maintains a personal markdown wiki from your sources. The product implements Andrej Karpathy's LLM-Wiki pattern and entered early access with a beta feedback period scheduled for 2026-Q3. It works by organizing three physical layers on disk: Layer 1 is an append-only sources/ directory containing contributors/ (your dated thoughts, like a lab notebook), research/ (wiki pages the LLM writes), and raw/ (original PDFs, URL captures, pastes). Layer 2 includes a README.md file (the rules you set for your wiki), context.md (the synthesized current truth the LLM writes), and index.yaml (an auto-generated file catalog). Layer 3 holds logs/ (a chronological record of every operation) and artifacts/ (generated outputs like daily briefs, exports, lint reports).

Three core operations form a loop. Contribute: you feed a thought, PDF, or URL; the LLM reads it, discusses key takeaways with you, updates 5–15 relevant wiki pages, and appends a log entry. Ask: you pose a question; the LLM reads your already-synthesized context.md first, then drills into cited source pages and returns answers with [[wikilink]] provenance. Lint: the LLM audits the whole wiki for contradictions, stale claims, orphan pages, missing cross-references, and gaps that need investigation. Good answers and lint findings flow back in as new contributions, so the wiki compounds over time. This stateful synthesis model differs fundamentally from RAG tools like NotebookLM or Perplexity, which re-derive answers from raw sources every query with nothing accumulating, and from passive containers like Notion or Obsidian, where the human organizes and AI features are add-ons.

MindBase ships as an MCP (Model Context Protocol) server published on npm as mindbase-mcp. It runs entirely on your machine with no cloud upload, signup, or telemetry. Claude Code receives the flagship experience: users install via two commands (/plugin marketplace add frankchu91/mindbase and /plugin install mb@mindbase), gaining access to 12 slash commands (/mb:contribute, /mb:ask, /mb:build, /mb:status, and 8 others), 5 sub-agents with security boundaries (contributor, builder, curator, researcher, migrator), and a SessionStart hook that auto-injects your project's README, context, and recent log entries into every new session. The Claude Code plugin also implements the full Karpathy 8-step ingest: read source fully, discuss 3 key takeaways with user, propose which wiki pages to create or update, wait for approval, then execute and confirm. Other MCP-compatible editors (Cursor, Windsurf, Cline, Continue.dev, Zed, Aider, Goose, and future custom SDK apps) access the same core MCP tools via a one-line config entry pointing to mindbase-mcp as a stdio server, but without the Claude Code plugin's extra UX layer. Installation requires Node.js 20+ and pnpm 10+ (only for Claude Code plugin or web UI from source); no clone or build is needed because the MCP server installs itself via npx. The project is open-source (github.com/frankchu91/mindbase) and the team noted that the core data model and loop are stable, though some UI features are still migrating from v1 to v2.

Context & Analysis

MindBase addresses a real gap in the knowledge-management landscape. Existing tools force users into one of two camps: either passive containers (Notion, Obsidian, Roam) where the human does all the organizing and the AI is bolted-on generation; or stateless RAG systems (NotebookLM, Perplexity, ChatGPT search) that re-derive answers from raw sources on every query, meaning no knowledge accumulates. By implementing Karpathy's LLM-Wiki pattern as a working product, MindBase proposes a third option where the LLM is a maintainer that actively writes and updates synthesized wiki pages as sources flow in. The design is stateful: each contribution triggers the LLM to read new material, cross-reference it with existing knowledge, flag contradictions, and update relevant wiki pages. Over time, the synthesized context.md file becomes the source of truth, richer and more consistent than raw sources alone.

The architecture is deliberately transparent and local-first: three physical layers on disk (sources, markdown wiki files, logs) with no proprietary database or cloud dependency. This appeals to users who want to own their data and understand their system's data flow. The product also distributes as an MCP server, plugging into the ecosystem of AI editors rather than trying to build its own IDE — Claude Code gets a flagship experience with structured sub-agents and slash commands, while other MCP-compatible editors (Cursor, Windsurf, Cline, Continue.dev) can access the same core tools with lighter UX. The team framed MindBase explicitly as early access with core data model and loop stable but some UI features still in migration, signaling they're testing the idea in the wild before consolidating the experience.

FAQ

How is MindBase different from tools like NotebookLM or Perplexity?
NotebookLM and Perplexity use RAG, which re-derives answers from raw sources every time you ask a question — nothing accumulates. MindBase builds a persistent, structured wiki that the LLM actively maintains and synthesizes. When you ask "what's my view on RAG?", the answer already exists in context.md rather than being re-derived, so answers get faster and more consistent over time.
Where does my data live?
MindBase runs entirely on your machine. There is no cloud upload, signup, or telemetry. Your wiki and sources live as markdown files and directories on your disk (by default under ~/mindbase-data/projects/).
What editors can I use MindBase with?
MindBase ships as an MCP server and works with Claude Code (flagship experience with slash commands and sub-agents), Cursor, Windsurf, Cline, Continue.dev, and any other MCP-compatible AI editor. Installation is one-line config for most editors; Claude Code also offers an optional plugin for extra features.

Get the latest Large Language Models news every morning

AI-summarized, only the topics you pick — one digest a day via Email, Slack, or Discord.

Free · takes 30 seconds · unsubscribe anytime

Discussion

No comments yet. Be the first to share your thoughts!

Log in to join the discussion

Related Articles

Stay ahead with AI news

Get curated AI news from 200+ sources delivered daily to your inbox. Free to use.

Get Started Free

Free · takes 30 seconds · unsubscribe anytime

1 minute a day. The AI essentials.

200+ sources · Email / LINE / Slack

Get it free →