Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By thebtf
Persistent memory for Claude Code — captures observations, stores knowledge across sessions, injects relevant context automatically
npx claudepluginhub thebtf/engram --plugin engramInteractive review and curation of low-quality observations. Helps keep the memory system lean and accurate.
Diagnose Engram connectivity and health. Tests the actual MCP connection, not just environment variables.
Export engram observations in human-readable or machine-readable format.
Restart the Engram worker process. Use when experiencing issues with the memory system.
Analyze what engram injected during this session, what was useful, and what should be improved.
Use when you want to explicitly store or recall knowledge across sessions. Prefer engram store_memory/recall_memory over file-based memory for decisions, patterns, insights, and cross-project knowledge. Also use when searching observations from previous coding sessions.
Retrospective evaluation of engram observations — rate global usefulness and project relevance to improve memory quality over time
Executes bash commands
Hook triggers when Bash tool is used
Modifies files
Hook triggers on file write and edit operations
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Persistent memory for AI coding agents. Survives across sessions and compactions.
Universal memory runtime — cross-session cognitive memory for Claude Code. Remembers decisions, patterns, and context across coding sessions.
Persistent memory for Claude Code — memories survive across sessions, projects, and machines
Persistent memory for Claude Code. Capture work across sessions and recall relevant context.
Long-term semantic memory for Claude Code, powered by OpenViking. Auto-recall relevant memories at session start and capture important information during conversations.
Persistent memory system for AI coding sessions — cross-tool memory sharing with 6-dimensional hybrid search
Orchestrate AI-driven PR reviews at scale. Unified MCP interface for CodeRabbit, Gemini, Copilot, Sourcery, Qodo, Codex, and Greptile with parallel multi-agent coordination.
Persistent memory for Claude Code — captures observations, stores knowledge across sessions, injects relevant context automatically
Persistent shared memory infrastructure for AI coding agents.
AI coding agents forget everything between sessions. Every new conversation starts from zero — past decisions, bug fixes, architectural choices, and learned patterns are lost. You waste time re-explaining context, and agents repeat the same mistakes.
Engram fixes this. It captures observations from coding sessions, stores them in PostgreSQL with vector embeddings, and automatically injects relevant memories into new sessions. One server, multiple workstations, zero context loss.
7 consolidated MCP tools replace 61 legacy tools, cutting context window usage by over 80%. Hybrid search combines full-text, vector similarity, and BM25 with cross-encoder reranking to surface exactly the memories that matter.
| Version | Highlight |
|---|---|
| v2.4.0 | LLM-Driven Memory Extraction — store(action="extract") from raw content (ADR-005) |
| v2.3.1 | Embedding Resilience Layer — 4-state circuit breaker with auto-recovery (ADR-004) |
| v2.3.0 | Reasoning Traces / System 2 Memory — structured reasoning chains with quality scores (ADR-003) |
| v2.2.0 | Server-side periodic summarizer — no client dependency for consolidation |
| v2.1.6 | Knowledge graph UX — local mode, search, visual styling |
| v2.1.4 | Config hot-reload without restart |
| v2.1.2 | User commands — /retro, /stats, /cleanup, /export |
| v2.1.0 | MCP tool consolidation — 61 to 7 primary tools, >80% context window reduction |
See Releases for full changelog.
Single server on port 37777 serves the HTTP REST API, MCP transports, Vue 3 dashboard, and background workers. Multiple workstations connect via hooks and the MCP plugin.
graph TB
subgraph "Workstation A"
CC_A[Claude Code]
H_A[Hooks + MCP Plugin]
CC_A --> H_A
end
subgraph "Workstation B"
CC_B[Claude Code]
H_B[Hooks + MCP Plugin]
CC_B --> H_B
end
H_A -- "Streamable HTTP / SSE" --> Server
H_B -- "Streamable HTTP / SSE" --> Server
subgraph "Engram Server :37777"
Server[Worker]
Server --> |HTTP API| API[REST Endpoints]
Server --> |MCP| MCP_T["SSE + Streamable HTTP"]
Server --> |Web| Dash["Vue 3 Dashboard"]
Server --> |Background| BG["Summarizer + Insights"]
end
Server --> PG[(PostgreSQL 17\n+ pgvector)]
Server -.-> LLM["LLM API\n(extraction/summarization)"]
Server -.-> EMB["Embedding API"]
Server -.-> RR["Reranker API"]
Server (Docker on remote host / Unraid / NAS):
POST /mcp), Vue 3 dashboard, consolidation scheduler, periodic summarizerClient (each workstation):
/retro, /stats, /cleanup, /export, /setup, /doctor, /restartdecisions, changes, how_it_works for common lookups