Back to reviews
claude-mem

claude-mem

Persistent session memory for Claude Code — no more re-explaining your project

claude-mem is an open-source memory compression plugin that gives Claude Code a persistent brain across sessions. It hooks into six Claude Code lifecycle events to automatically capture tool observations, compress them into semantic summaries, and store everything in a local SQLite + Chroma vector database. When a new session starts, relevant context is injected automatically — no copy-pasting, no re-explaining architecture decisions you made last week. The system achieves roughly a 10x token reduction through progressive disclosure: it retrieves only what's relevant for the current task rather than dumping everything into context. Developers can query their memory store via natural language through MCP tools (search, timeline, get_observations), and a built-in web viewer at localhost:37777 lets you inspect memory streams visually. Privacy controls via <private> tags let you keep sensitive content out of the store. Install is a single npx command, and it works with Claude Code, Gemini CLI, and OpenClaw gateways. The project hit 48K+ GitHub stars and is clearly scratching a real itch: the loss of context between sessions is one of the most consistent pain points for AI-assisted development.

Panel Reviews

The Builder

The Builder

Developer Perspective

Ship

This solves the most annoying thing about AI coding assistants — having to re-explain your entire project structure every single session. The six-hook lifecycle integration is thoughtful and the 10x token reduction claim is plausible if the retrieval is tuned well. Single-command install seals it.

The Skeptic

The Skeptic

Reality Check

Skip

Running a background Python Chroma server plus SQLite on every dev machine adds meaningful complexity and failure modes. The AGPL-3.0 license is a red flag for commercial projects — the non-commercial Ragtime component inside makes it effectively dual-license poison for most teams. Wait for a cleaner, simpler implementation.

The Futurist

The Futurist

Big Picture

Skip

This is the beginning of AI development tools that genuinely learn your codebase over time. Today it's session memory — in 18 months it'll be team-wide institutional knowledge that onboards new agents automatically. The 48K GitHub stars in days signal real market pull.

The Creator

The Creator

Content & Design

Ship

As someone who writes in sessions that span days, having context automatically restored without a 10-minute recap ritual is genuinely valuable. The web viewer UI for inspecting memory streams is a nice touch — makes the invisible visible.

Community Sentiment

Overall1,000 mentions
77% positive16% neutral7% negative
Hacker News340 mentions
74%18%8%

Finally, someone built this properly — the hook-based architecture is clean

Reddit180 mentions
68%22%10%

AGPL license is going to be a problem for anyone using this commercially

GitHub480 mentions
82%12%6%

Works exactly as advertised — first tool that actually fixes the Claude Code memory gap