Video summary
Build A Claude Knowledge Base That Self-Improves!
Main summary
Key takeaways
Overview / Main idea
- The video demonstrates building a “self-improving” personal knowledge base using Claude, modeled after a “second brain” concept (attributed to Andrej Karpathy).
- The emphasis is on simplicity: using plain folders + Markdown files instead of tools like Obsidian vaults, vector databases, or RAG embeddings.
- The system is designed to compound over time:
- capture raw info → let Claude create a wiki/index → generate answers/reports → feed results back in → periodically run audits (“health checks”) to prevent the model from building on mistakes.
What you “build” (architecture / files)
The knowledge base is implemented as:
- Top-level
Claude.md(schema/instructions)- Tells Claude how to read the folders, how to ingest, how to write the wiki, how to answer questions, and how to run health checks.
- Three folders:
raw/: a junk-drawer capture space for articles, notes, screenshots, meeting transcripts, etc.- Saved as MD; images/PDFs can be attached.
wiki/: Claude-generated organized knowledge- Written by AI; user doesn’t edit by hand.
outputs/: Claude-generated content from questions- Answers, briefings, reports—usable later to refine/update future quality.
A change log / memory file approach is included to track:
- when ingestion happened
- what’s new vs what’s already been processed
Key claim: No vector store or embeddings are required; Claude can maintain an index by reading what it needs, even for large corpora.
Five-step framework (tutorial workflow)
-
Set up the system
- Create the folder structure and the
Claude.mdinstruction files. - Supports the idea of multiple knowledge bases under a top-level container (“second brain” folder), each with its own layout/instructions.
- Includes focus/theme configuration (e.g., productivity ethos like “doing less but better,” attention/energy management, systems design, deep work, essentialism, effective contribution).
- Create the folder structure and the
-
Dump / ingest data into
raw/- Capture existing knowledge (the example starts with 10–20 strong entries).
- Supports manual copy/paste or adding files into markdown.
- Demonstrates using Notion connections via Claude CoWork connectors (Notion database link) to pull entries, plus attaching files (PDFs/images).
- Tip: don’t over-organize during capture; the AI does the organization.
-
Build the wiki
- Claude reads everything in
raw/and generates:- an
index.mdfirst - one markdown page per major topic
- linked relationships between topics
- an
- Wiki generation follows the rules in
Claude.md, including an emphasis on writing quality.
- Claude reads everything in
Notable quality technique: The video mentions using an “anti-AI writing style guide” (inspired by a Wikipedia “avoid AI writing” style idea) so Claude produces clearer, less robotic writing.
-
Ask questions + create outputs (compounding loop)
- Query the knowledge base (example: balancing high output quickly vs managing energy/health).
- Claude:
- reads the index
- pulls relevant wiki entries
- produces an answer with citations/attribution
- Crucial improvement loop: when you ask a question, Claude generates a report into
outputs/, and those outputs can later refine/update the wiki and future answers.
-
Health check (quality control / self-audit)
- Once a month, run an audit to prevent drift from earlier mistakes.
- The health check prompt includes actions like:
- flag contradictions across articles
- find missing data/gaps
- list claims without sources (and optionally fill with web search)
- find broken links/orphan references
- detect stale content (e.g., older than 90 days and still not relevant)
- suggest new article candidates
Two-phase behavior:
- **Phase 1:** generate an audit report (what to fix)
- **Phase 2 (optional):** ask which findings to apply and then update automatically
Automation / skills / scheduling
- The author demonstrates creating:
- a scheduled monthly task to run the health check automatically
- a “knowledge base health check skill” that performs a structured audit in seven stages, including:
- contradictions
- broken backlinks/orphans
- source provenance
- raw coverage / completeness
- stale articles (older/outdated)
- suggested new articles (and coverage gaps)
- There’s mention of an interactive action menu for committing fixes, plus the option to run without approval.
- The scheduled run is shown taking ~12 minutes for the demo; it may cost Claude credits, so scheduling is recommended monthly (or staggered across multiple KBs).
Product features / tools referenced
- Claude CoWork / Claude projects
- Workspace for pointing Claude at local folder structures and running workflows.
- WhisperFlow
- Used to instruct Claude what to build (a “builder” prompt/workflow setup).
- Notion connector
- Fetches content from a Notion database into the
raw/folder.
- Fetches content from a Notion database into the
- Scheduled tasks + skill creator plugin
- Used to implement recurring health checks.
Mentions (supporting/optional):
- Speechify for reading reports aloud (optional productivity tip)
- Xcode (Mac app) for quickly generating markdown files manually
- Obsidian Web Clipper as an optional alternative for capturing web pages into clean markdown
Review / analysis angle
- The author frames this as a superior alternative to Obsidian + plugins because:
- Notion/Obsidian-based second brains often require the user to act as librarian (manual organization, tagging, plugin maintenance).
- Here, Claude becomes the librarian: it organizes, links, summarizes, and indexes during wiki builds and ongoing outputs.
- Why it matters claim: Day 1 is basic; by day ~100, the system becomes a unique personal/company asset due to accumulated, cross-referenced knowledge from your own saved answers and inputs.
Main speakers / sources
- Main speaker: The video author (unnamed in subtitles), building the system with Claude CoWork.
- Source referenced: Andrej Karpathy (as the inspiration for the knowledge base / “second brain” approach).