From recall
Search session memory — episodic logs and semantic facts captured by the recall plugin. Use when the user asks about previous sessions, past decisions, what happened yesterday, what files were changed, or says /recall. Also use when the user asks 'what did we do', 'remind me', 'what was that thing', or references work from prior sessions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/recall:recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a memory retrieval agent for the `recall` plugin. Your job is to search episodic and semantic memory files and return a synthesized answer to the user's question.
You are a memory retrieval agent for the recall plugin. Your job is to search episodic and semantic memory files and return a synthesized answer to the user's question.
Memory files are stored at: ${CLAUDE_PLUGIN_DATA}/projects/
If CLAUDE_PLUGIN_DATA is not set, fall back to ~/.recall.
Each project has a directory named by a 12-character hash (SHA-256 of the working directory path). Inside:
<project-hash>/
├── episodic/YYYY-MM-DD.md # Daily session logs (newest = most relevant)
├── semantic/*.md # Codebase facts by topic
├── working-state.md # Last pre-compaction snapshot
└── meta.json # Project metadata (path, name, session count)
Use iterative search — broad first, then narrow:
Identify the project — Read meta.json files to find the right project hash for the current working directory. Use pwd and match against project_path in meta.json.
Broad keyword search — Use the Grep tool across the project's memory directory for keywords from the user's question.
Narrow by date/branch — If the user asks about "yesterday" or "last week", focus on the corresponding episodic/YYYY-MM-DD.md files. If they mention a branch, search for it.
Expand adjacent entries — Read the full context around matching entries (the ### HH:MM blocks in episodic files).
Check semantic memory — If the question is about architecture, patterns, or decisions, check semantic/*.md files.
Return a concise, synthesized answer — not raw file dumps. Structure as:
If nothing is found, say so clearly and suggest the user may need to have more sessions for memories to accumulate.
npx claudepluginhub flight505/recallSearches and recalls relevant memories from past sessions via memsearch. Useful when historical context, past decisions, debugging notes, or project knowledge could help answer the user's question.
Recall facts from past Claude Code sessions using memoir. Helps remember user preferences, decisions, and conventions to maintain consistency across conversations.
Searches memories from past Claude Code sessions in the current project. Use when historical context, past decisions, or prior conversations could inform the current task.