Claude-Supermemory — Summary
Claude-Supermemory is a Claude Code plugin that delegates all memory storage and retrieval to the Supermemory cloud API (supermemory.ai). It ships 2 hooks (SessionStart for context injection, Stop for session save), 2 skills (super-search, super-save), and 3 slash commands (index, project-config, logout). The entire memory backend is remote: there is no local database, no local embeddings, and no local binary — just Node.js scripts that call the Supermemory API.
The cloud platform provides two memory containers per installation: personal container (per user, cross-session) and team container (per repo, shared across team members). Signal-keyword extraction controls what gets saved (remember, architecture, decision, bug, fix are the defaults). A maxProfileItems: 5 default limits how many memories are injected per session to avoid context bloat.
Compared to seeds, this is closest to ccmemory in concept (hook-driven session memory for Claude Code) but entirely cloud-dependent where ccmemory is self-hosted. The signal-keyword extraction approach (save only conversation turns containing specific keywords) differs from CSR (saves everything) and ccmemory (LLM detection of specific node types). Requires Supermemory Pro subscription ($) — the only paid-only framework in this batch alongside lean-ctx's cloud tier.