← ClaudeAtlas

claudememlisted

Captures knowledge notes and session reports that persist across conversations. Provides full-text search with faceted filters, code structure analysis, and bidirectional cross-referencing between notes and sessions. Use when saving knowledge for future sessions, recalling past work, searching stored context, wrapping up a session, or analyzing code structure. Default: local, zero network. Cloud embedding backends (Gemini, Voyage, OpenAI) are opt-in via `claudemem setup`.
zelinewang/claudemem · ★ 0 · AI & Automation · score 70
Install: claude install-skill zelinewang/claudemem
# claudemem — Persistent Memory for AI Agents Captures and retrieves knowledge across conversations. Two behaviors: 1. **Automatically** save knowledge notes during work (silent, no user action needed) 2. **On command** (`/wrapup`) save a structured session report with cross-linked notes ## Slash Commands - **/wrapup** [title] — End-of-session: extract knowledge notes + save detailed session report + cross-link everything. - **/recall** [topic] — Search persistent memory for a topic, or show recent activity. **Natural triggers:** "remember this", "what do you remember about...", "wrap up", "what did we do last time" ## Setup If `claudemem` is not on PATH: ```bash curl -fsSL https://raw.githubusercontent.com/zelinewang/claudemem/main/skills/claudemem/scripts/install.sh | bash ``` ## CLI Reference All commands support `--format json` for structured output. ```bash # Notes claudemem note add <category> --title "..." --content "..." --tags "..." [--session-id "..."] claudemem note search "query" [--in category] [--tag tags] claudemem note list [category] claudemem note get <id> # Supports 8-char prefix claudemem note append <id> "additional content" claudemem note update <id> --content "..." [--title "..."] [--tags "..."] claudemem note delete <id> claudemem note categories claudemem note tags # Sessions claudemem session save --title "..." --branch "..." --project "..." --session-id "..." [--related-notes "id:title:cat,..."] claudemem session lis