| name | recall |
| description | Deep search across all past Claude Code sessions for decisions, solutions, and discussions |
| version | 0.6.0 |
| triggers | ["I forgot","do you remember","what did we decide","we discussed this before","I need to recall","search my memory","/recall"] |
| tools | ["Bash","Read"] |
Recall: Self-Memory Retrieval
STOP. READ THIS FIRST.
THE ONLY COMMAND YOU MAY USE IS:
.claude/bin/transcript recall "your query"
YOU MUST NOT USE:
rg - FORBIDDEN
grep - FORBIDDEN
find - FORBIDDEN
cat ~/.claude/ - FORBIDDEN
- Any direct file access to
~/.claude/projects/ - FORBIDDEN
If you use any forbidden command, you are violating this skill's requirements.
Why This Matters
The transcript CLI:
- Handles JSONL parsing correctly
- Groups results by session
- Shows timestamps and context
- Finds related skills automatically
- Auto-synthesizes complex queries with LLM
Raw tools like rg return unreadable JSON blobs and miss context. Using them is a failure mode.
The Command
.claude/bin/transcript recall "your query"
That's it. Run this command. Read the output. Done.
Tiered Retrieval
Recall uses intelligent tiering to match retrieval strategy to query complexity:
Fast Path (default)
- SQLite FTS search
- Returns in 1-2 seconds
- Best for simple keyword lookups
Deep Path (auto or --deep)
- Fast path + LLM synthesis
- Returns in 5-10 seconds
- Best for complex questions requiring cross-session analysis
Auto-Escalation
The command automatically escalates to deep path when:
- Match count > 50 - Too many results to scan manually
- Results span > 7 days - Long time range suggests complex topic
- Query is a question - Starts with what/why/how/did/do/etc.
- Session count > 5 - Information spread across many sessions
Controlling Escalation
.claude/bin/transcript recall "caching" --deep
.claude/bin/transcript recall "caching" -D
.claude/bin/transcript recall "why did we choose redis" --fast
.claude/bin/transcript recall "why did we choose redis" -F
Note: --fast takes precedence over --deep if both are specified.
Options
.claude/bin/transcript recall "query" --max-sessions 5
.claude/bin/transcript recall "query" --context 3
.claude/bin/transcript recall "query" --limit 100
.claude/bin/transcript recall "query" --deep
.claude/bin/transcript recall "query" --fast
.claude/bin/transcript recall "query" --json
Examples
Simple keyword lookup (fast path)
.claude/bin/transcript recall "caching"
Returns grouped results in 1-2 seconds.
Question query (auto-escalates to deep path)
.claude/bin/transcript recall "why did we decide to use Redis?"
Auto-detects question pattern, runs synthesis, returns synthesized answer with citations.
Force deep analysis
.claude/bin/transcript recall "authentication patterns" --deep
Forces LLM synthesis even if auto-escalation criteria not met.
Skip synthesis for speed
.claude/bin/transcript recall "how does the login flow work" --fast
Skips synthesis despite question pattern, returns fast path results only.
Understanding the Output
Fast Path Output
๐ Recall: "caching"
Found 12 matches across 3 sessions
โฉ Fast path: No escalation criteria met
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ happy-hippo (5 matches)
Jan 15, 10:30 AM - 11:45 AM
[10:32 AM] assistant Line 245
Implemented Redis caching layer with 60-second TTL...
โ .claude/bin/transcripthappy-hippo --search "caching" --human
Deep Path Output
๐ Recall: "why did we choose Redis?"
Found 28 matches across 4 sessions
โก Deep path: Query is a question
[... fast path results ...]
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ค Synthesized Answer
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Based on your past sessions, you chose Redis for caching because:
1. **Performance requirements** [1] - The dashboard needed sub-100ms response times
2. **Existing infrastructure** [2] - You already had Redis running for session storage
3. **TTL support** [3] - Native expiration simplified cache invalidation logic
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Sources
[1] happy-hippo (Jan 15, 2026)
โ .claude/bin/transcripthappy-hippo --search "why did we choose Redis?" --human
[2] clever-cat (Jan 10, 2026)
โ .claude/bin/transcriptclever-cat --search "why did we choose Redis?" --human
Workflow
User asks about past discussion
โ
.claude/bin/transcript recall "topic" โ START HERE, ALWAYS
โ
Check path indicator (โฉ Fast or โก Deep)
โ
Read the grouped output (and synthesis if deep)
โ
Need more detail? โ Use drill-down command from output
โ
Respond to user with findings
Common Mistakes (DO NOT DO THESE)
rg "sandbox" ~/.claude/projects/
grep -r "sandbox" ~/.claude/
find ~/.claude -name "*.jsonl" | xargs grep sandbox
cat ~/.claude/projects/*/abc123.jsonl | grep sandbox
.claude/bin/transcript recall "sandbox"
Summary
- USE:
.claude/bin/transcript recall "query"
- DO NOT USE:
rg, grep, find, cat on transcript files
- Let auto-escalation work - it detects when synthesis is needed
- Use
--deep to force synthesis, --fast to skip it
- Read the grouped output (and synthesis if provided)
- Drill down if needed using commands from the output