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.
npx claudepluginhub herbertjulio/specialist-agent --plugin specialist-agentThis skill is limited to using the following tools:
Recall decisions, preferences, and lessons from previous sessions using Claude Code's native auto-memory system.
Loads and applies project memories from prior sessions for consistent decisions, conventions, and preferences. Stores new entries automatically or via /remember.
Recalls past work, decisions, error solutions, and project history via a token-efficient 3-layer memory search workflow (search, timeline, details).
Implements 3-layer memory search workflow to recall past work, decisions, errors, and project history token-efficiently via layered functions.
Share bugs, ideas, or general feedback.
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