From specialist-agent
Retrieves saved project decisions, preferences, lessons, and conventions from Claude Code's memory files via /recall [topic] or auto-activation when needing past context.
How this skill is triggered — by the user, by Claude, or both
Slash command
/specialist-agent:recallThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Recall decisions, preferences, and lessons from previous sessions using Claude Code's native auto-memory system.
Recall decisions, preferences, and lessons from previous sessions using Claude Code's native auto-memory system.
Query: $ARGUMENTS
Read MEMORY.md from the memory directory. This file is automatically loaded into conversation context, so it may already be available.
Memory directory: .claude/projects/<project-hash>/memory/
Show full memory summary by reading all memory files listed in MEMORY.md.
Search memory file names, descriptions, and content for matches.
For matched memories, read the full .md file to get details including Why and How to apply.
══════════════════════════════════════════════
PROJECT MEMORY
══════════════════════════════════════════════
──────────────────────────────────────────────
DECISIONS & CONTEXT (project)
──────────────────────────────────────────────
- [Topic]: [Decision]
Why: [Reason]
How to apply: [Guidance]
──────────────────────────────────────────────
PREFERENCES & LESSONS (feedback)
──────────────────────────────────────────────
- [Rule or preference]
Why: [Reason]
How to apply: [When/where]
──────────────────────────────────────────────
REFERENCES
──────────────────────────────────────────────
- [Resource]: [Where to find it]
══════════════════════════════════════════════
──── /recall: state management ────
Found 2 related memories:
Decision: State Management (project)
Use Zustand instead of Redux
Why: Simpler API, less boilerplate
How to apply: All new state should use Zustand
Pattern (feedback):
Never use Redux in this project
Why: Team consensus on simplicity
──── /recall: [topic] ────
No memories found for "[topic]".
Suggestions:
- Try /recall all to see all memories
- Use /remember to add new memories
/recall # Show recent memories
/recall all # Show all memories
/recall state management # Search for topic
/recall testing # Search for topic
/recall decisions # Show only project-type memories
/recall preferences # Show only feedback-type memories
/recall references # Show only reference-type memories
npx claudepluginhub herbertjulio/specialist-agent --plugin specialist-agentLoads and applies project memories from prior sessions for consistent decisions, conventions, and preferences. Stores new entries automatically or via /remember.
Searches stored memories and decisions using MCP tools to answer questions about past learnings, architectural choices, patterns, and project context like 'what testing framework did we decide on?' or 'ESM import issues?'
Implements 3-layer memory search workflow to recall past work, decisions, errors, and project history token-efficiently via layered functions.