Back to Videos

Karpathy's Wiki vs. Open Brain. One Fails When You Need It Most.

Date April 22, 2026
Duration 41 min
AI Memory Knowledge Management PKM AI Architecture
TL;DR

Andrej Karpathy's wiki idea (41,000 bookmarks in a week) and Nate's Open Brain solve the same AI amnesia problem from opposite directions: Karpathy compiles understanding at write time (pre-synthesized markdown), Open Brain synthesizes at query time (raw facts in SQL). Neither is universally better. Nate proposes a hybrid — OpenBrain as durable source of truth with a wiki layer generated from a graph database on top — so you get structured precision and synthesized narrative understanding from the same data.

Key Takeaways

Summary

The Problem Both Systems Are Solving

Every time you use AI with documents, the AI re-derives your knowledge from scratch. You upload files to ChatGPT, Notebook LM, or Claude, ask a question, and the AI chunks through documents to find relevant pieces. This works, but it's inefficient and lossy — especially for questions that require connecting five different documents across different time periods.

"What's happening under the hood is that AI is effectively rediscovering your knowledge from scratch every single time you ask a question."

Both systems try to make AI knowledge persistent and compounding. The disagreement is about when the synthesis happens.

The Fundamental Fork: Write Time vs. Query Time

Karpathy's Wiki (Write Time): When new information arrives, an AI agent immediately synthesizes it into existing wiki pages — updating, cross-referencing, integrating. When you later ask a question, the connections are pre-built. Analogy: a study guide. Someone already read all the source material and distilled it into navigable, synthesized form.

Open Brain (Query Time): Raw facts go into a SQL database — tagged, structured, precisely organized. When you ask a question, AI synthesizes across those facts at that moment. Analogy: a filing cabinet with a librarian. All the raw material is there; the librarian synthesizes the answer fresh when you ask. More precise, more scalable, but no pre-built narrative.

Where Karpathy's Wiki Wins

Where Open Brain Wins

The Editorial Trap in Wiki Synthesis

The main risk in Karpathy's approach: every synthesis decision the AI makes gets baked into the wiki. If the AI summarizes a source with a slightly wrong interpretation, that interpretation becomes the foundation for future synthesis. The error compounds silently.

"If the AI writes something slightly wrong into the wiki and it stays there, the next answer will build on that wrong thing. You start to get drift, and errors start to accumulate."

In a database, a wrong fact sits in one row. In a wiki, it can propagate into every document that references it.

The Hybrid Solution: OpenBrain + Graph Database Wiki Layer

Nate's proposed architecture:

  1. OpenBrain SQL stays the source of truth — all new information goes in here first, always
  2. A compilation agent runs on schedule (daily, weekly, on demand) — it reads from structured data, builds a graph of relationships, and generates wiki pages
  3. Wiki pages are generated artifacts — like a daily briefing from a chief of staff who read everything. Browsable in Obsidian, but derived from the database
  4. If the wiki has an error, fix the source data and regenerate — the wiki never drifts because it's always rebuilt from SQL

"The database ends up feeding the wiki, and the wiki never contradicts the database."

Shared Principles: What Both Systems Agree On

The Publishing Format Insight

Karpathy didn't ship a tool — he published a high-level description designed to be pasted into an AI agent that would build the specifics with the user. This is a genuinely new way to share technical knowledge: a blueprint for an AI to execute that respects the reader's agency.

Oracle to Maintainer: The Deepest Shift

"Most of us have treated AI as something you ask questions to. Karpathy correctly treats it as something that has an ongoing job — maintaining a knowledge artifact that gets better over time. The AI isn't here for magical one-off answers from the clouds. It's here for building sustained work that compounds."

This reframe — from answer engine to knowledge maintainer — is the architectural mindset shift that makes both systems, and the hybrid, make sense.

Decision Guide

Use Karpathy's wiki if: solo user, single deep research topic, no need for precise queries or multi-agent access, want something running in 30 minutes.

Use Open Brain if: multiple AI tools need the same memory, team environment, high-volume data, structured queries, automated agent workflows, long-term infrastructure.

Use the hybrid if: you want structured precision AND synthesized narrative — the wiki's browsability without its error-compounding risk.

Notable Quotes

"What's happening under the hood is that AI is effectively rediscovering your knowledge from scratch every single time you ask a question."

"The editorial trap in wiki synthesis: if the AI writes something slightly wrong into the wiki and it stays there, the next answer will build on that wrong thing, and you start to get drift."

"The database ends up feeding the wiki, and the wiki never contradicts the database."

"Karpathy is moving the AI from Oracle to maintainer. Most of us have treated AI as something you ask questions to. He correctly treats it as something that has an ongoing job."

"Human readability is a bonus. Agent accessibility is actually the requirement."

Chapters

Time Topic
00:0041,000 bookmarks and hundreds of DMs
02:30The insight underneath the simplicity
05:00Why AI throws away its cognitive work every time
07:30Knowledge compiled once vs re-derived on every query
10:00Write time vs query time: the fundamental fork
13:00Study guide vs filing cabinet with librarian
16:00The editorial trap in wiki synthesis
19:00Dashboards hide exactly the thing you need to see
22:00Where Karpathy's wiki wins: deep research mode
25:00Where OpenBrain wins: precise structured operations
28:00Multi-agent access and volume scaling
31:00Where each system breaks at scale
34:00Wiki stillness vs database stillness
36:30The hybrid: OpenBrain graph database plugin
39:00AI as maintainer, not oracle
41:00Making the decision for your context layer

References

From Description

Tools and Concepts Mentioned