Every Claude Code Memory System Compared (So You Don't Have To)
The video systematically compares six levels of memory systems for Claude Code, ranging from built-in native tools like claude.md to cross-platform solutions like Open Brain. The presenter argues these aren't competing tools but complementary layers that solve different scaling problems. He recommends most users stop at level two or three, reserving higher levels for specific use cases.
Summary
The presenter opens by acknowledging the overwhelming number of Claude Code memory tools available and reframes them not as competitors but as six distinct levels that address different stages of memory complexity. The core insight underpinning all levels is the same question: how does Claude pull the right context at the right time? Every system differs only in where memory is stored and how it is retrieved.
Level one covers Claude's native built-in tools: claude.md and the auto-memory system that generates memory.md files. The presenter warns against stuffing too much into claude.md, recommending a 200-line cap with external files referenced as needed to avoid 'context rot,' the degradation of recall as context windows fill up. He also references a leaked internal Anthropic framework called 'Chyros,' an unreleased always-on daemon designed to continuously watch projects and consolidate memories automatically.
Level two builds on level one by introducing a structured memory prompt system inspired by Pavl Hurin and implemented by John Connelly. This adds a formal directory structure with general, domain-specific, and tool-specific markdown files, plus a session-start hook that auto-injects the memory index into every new Claude session. The presenter demonstrates this live, showing how it reorganizes existing memory files, deletes empty ones, resolves open threads, and adds cross-references. He also highlights the potential for team-sharing of domain memory files.
Level three addresses the scaling limits of keyword search by introducing MemSearch, a plugin from Zillus (creators of a popular open-source vector database) that ports OpenClaw's memory architecture into Claude Code. It uses semantic vector search to find relevant memories by meaning rather than keyword, and automatically injects the top three matches into every prompt via a user-prompt-submit hook. The presenter also briefly covers Claude Mem as an alternative, noting it uses MCP tools requiring Claude to actively call search rather than injecting automatically, and stores data in a non-readable format.
Level four introduces Mem Palace, a local RAG system using verbatim storage across an SQL database and ChromaDB. It uses an ancient memory palace structure (wings, rooms, closets, drawers) and a symbolic index language for ultra-fast retrieval (reportedly 42ms). Nothing is summarized, so nothing is theoretically lost, and it claims the highest published benchmark score of any memory system. It operates via silent background hooks on session end and pre-compaction events.
Level five shifts entirely away from conversation recall toward building an interconnected knowledge base. The presenter covers Andrej Karpathy's LLM Wiki pattern, which uses a raw folder for source documents and a wiki folder owned entirely by Claude, visualized through Obsidian. He also covers Recall, a hosted service that automates the same process with a browser extension and MCP access, though he raises concerns about data ownership and its orientation toward content consumption rather than operational memory. LightRAG is mentioned as an enterprise-grade but overkill alternative.
Level six, called Open Brain by Nate Jones, is the only cross-tool memory layer covered, storing memories in a user-owned Postgres database on Supabase accessible by Claude Code, ChatGPT, Claude Desktop, and Cursor simultaneously. It uses an MCP server and Supabase edge functions as a universal front door. Mem0 is mentioned as a more production-ready hosted alternative for developers shipping AI products, though with the trade-off of data living on external servers.
The presenter concludes with a practical decision framework: beginners should use level one, intermediate users should add level two and stop there, and only those with months of accumulated context or multi-tool workflows should consider levels three through six. He personally implements up to level three in his own Agentic OS.
Key Insights
- The presenter argues that 'context rot' — the degradation of LLM recall as context windows fill up — is the central problem all memory systems are trying to solve, and recommends keeping claude.md under 200 lines with external files referenced rather than embedded to mitigate it.
- The presenter reveals that when Claude Code's source code accidentally leaked, developers found references to an unreleased internal framework called 'Chyros' — an always-on daemon designed to continuously watch projects, decide what's worth remembering, and consolidate old notes automatically while the user sleeps.
- The presenter distinguishes MemSearch from Claude Mem by arguing that MemSearch's hook-based auto-injection of semantic matches is superior to Claude Mem's MCP approach, because MCP requires Claude to actively decide to call the search tool rather than automatically receiving relevant context.
- Mem Palace claims the highest benchmark score of any published memory system by storing conversations verbatim — never summarizing — using a symbolic index language that lets the model scan thousands of 'drawers' in a single pass, reportedly retrieving information in 42 milliseconds.
- The presenter argues that Open Brain is the only system where all AI tools a user works with — Claude Code, ChatGPT, Cursor, Claude Desktop — share the same memory in real time, stored in a user-owned Postgres database on Supabase for roughly $0.10–$0.30 per month, making it the most future-proof option when new AI tools emerge.
Topics
Transcript
[0:00] Right now, if you search for the best claw code memory system, you get absolutely buried. Mem zero, Carpathy's Obsidian Wiki, Open Claw and Hermes, Mem Palace, Light Rag, Clawude Mem, Claw Mem. It's getting ridiculous to keep up with it. But after spending hours researching it, these aren't competing tools. They're different ways of handling memory depending on your use case. And the reason I went deep on this is because I've been building out my own agentic operating system. basically a business brain that runs across everything I do. So, I needed to figure [0:31] out what actually works, what scales, and what just adds complexity to my existing setup. So, in this video, I'll walk through…
Full transcript available for MurmurCast members
Sign Up to AccessMore from Simon Scrapes
I Rebuilt Hermes in Claude Code (It’s Ridiculously Good)
The creator rebuilds key features of the Hermes agentic AI system inside their own Claude Code setup rather than installing it off-the-shelf, arguing that understanding the architecture provides more long-term leverage. They identify three hidden costs of pre-built systems: inherited assumptions, inability to fix unknown code, and poor scalability. Their custom build addresses Hermes's limitations in multi-client identity management, semantic memory recall, and skill system maintainability.
Agentic AI Systems, Clearly Explained
This video explains agentic AI systems across four levels of complexity: chatbots, AI workflows, agentic workflows, and agentic AI systems. Using content repurposing as a consistent example, the speaker demystifies intimidating terms like harnesses, MCPs, and memory systems, arguing that these systems are fundamentally just files and folders accessible to non-developers.
Stop Downloading Claude Code Skills. Do This Instead.
The video argues that downloaded Claude Code skills are too isolated or bloated to drive real business outcomes. The speaker introduces 'skill systems' — orchestrated chains of small, focused skills that feed into each other end-to-end. A practical example shows a five-skill automation that converts a YouTube video into five ready-to-post short-form clips.
Master 80% of Claude Code, Just Learn These 15 Things
This tutorial covers 15 foundational concepts for using Claude Code effectively, emphasizing that context management is the single most critical skill. The presenter draws from real user behavior across thousands of users to show how plan mode, context tools, slash commands, skills, hooks, MCPs, and memory systems combine to form a powerful agentic workflow.
Master Claude Design in One Video (Complete Build)
The video demonstrates a live build using Claude Design to create real business assets for the Aentic Academy, including a landing page, mobile wireframe, and slide deck. The host emphasizes that building a proper design system upfront is the single most important factor in avoiding generic AI aesthetics. The video compares multiple methods: using ChatGPT's image model, the Skill UI CLI tool, and Claude Design's native interface.