What problem does it solve?
This Skill helps you locate information from past Claude Code sessions by searching the memory context. It is ideal for recalling decisions, implementations, bugs, or any important observations from earlier work.
Core Features & Use Cases
- Cross-session recall: Find what was decided, implemented, or fixed in previous sessions.
- Topic-based search: Query for terms like “authentication”, “branch-name”, or “history” to surface relevant context.
- Stats and context: Retrieve statistics about memory and full context for a given branch.
Quick Start
To search, use: python3 "$CLAUDE_PROJECT_DIR/.claude/memory/context_memory.py" search "<query>"
Common Queries:
- Recent activity:
python3 "$CLAUDE_PROJECT_DIR/.claude/memory/context_memory.py" recent
- Search for specific topic:
python3 "$CLAUDE_PROJECT_DIR/.claude/memory/context_memory.py" search "authentication"
- Get statistics:
python3 "$CLAUDE_PROJECT_DIR/.claude/memory/context_memory.py" stats
- Get full context for current branch:
python3 "$CLAUDE_PROJECT_DIR/.claude/memory/context_memory.py" context "branch-name"
Observation Types stored in memory include: decision (D), bugfix (B), feature (F), refactor (R), discovery (i), change (C).