From aide
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?'
How this skill is triggered — by the user, by Claude, or both
Slash command
/aide:recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Recommended model tier:** balanced (sonnet) - this skill performs straightforward operations
Recommended model tier: balanced (sonnet) - this skill performs straightforward operations
Search stored memories and decisions to answer questions about past learnings, architectural choices, patterns, and project context.
| Tool | Purpose |
|---|---|
mcp__plugin_aide_aide__memory_search | Full-text search (fuzzy, prefix, substring matching) |
mcp__plugin_aide_aide__memory_list | List memories, optionally filtered by category |
| Tool | Purpose |
|---|---|
mcp__plugin_aide_aide__decision_get | Get specific decision by topic |
mcp__plugin_aide_aide__decision_list | List all decisions |
mcp__plugin_aide_aide__decision_history | Get all versions of a decision |
mcp__plugin_aide_aide__memory_search with relevant keywordsmcp__plugin_aide_aide__decision_get with the topic, or mcp__plugin_aide_aide__decision_listWhen the user asks about previous context:
For architectural/design questions (testing, auth, database, etc.):
mcp__plugin_aide_aide__decision_get with topic (e.g., "testing")mcp__plugin_aide_aide__decision_listFor learnings/patterns/gotchas:
mcp__plugin_aide_aide__memory_search with query (e.g., "ESM imports")When answering:
User: "What testing framework did we decide on?"
→ Use mcp__plugin_aide_aide__decision_get with topic="testing"
→ Answer with the decision and rationale
User: "What was the issue with ESM imports?"
→ Use mcp__plugin_aide_aide__memory_search with query="ESM imports"
→ Answer with the learning
User: "What approach did we take for auth?"
→ Use both mcp__plugin_aide_aide__decision_get (topic="auth") and mcp__plugin_aide_aide__memory_search (query="auth")
→ Combine both sources in answer
If no results found:
mcp__plugin_aide_aide__memory_list to browse all memoriesnpx claudepluginhub jmylchreest/aide --plugin aideImplements 3-layer memory search workflow to recall past work, decisions, errors, and project history token-efficiently via layered functions.
Retrieves saved project decisions, preferences, lessons, and conventions from Claude Code's memory files via /recall [topic] or auto-activation when needing past context.
Manages AI memories: saves decisions/patterns/facts with categories/tags, searches context, lists/deletes entries, rescans project architecture via MCP tools and /remember /forget.