recalllisted
Install: claude install-skill jmylchreest/aide
# Recall
**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.
## MCP Tools
### Search Memories
| 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 |
### Get Decisions
| 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 |
## Workflow
1. **Parse the question** - Extract key terms
2. **Search both sources:**
- Use `mcp__plugin_aide_aide__memory_search` with relevant keywords
- Use `mcp__plugin_aide_aide__decision_get` with the topic, or `mcp__plugin_aide_aide__decision_list`
3. **Analyze timestamps** - Prefer most recent (ULIDs are time-ordered)
4. **Answer** - Combine relevant context from both sources
## Instructions
When the user asks about previous context:
1. **For architectural/design questions** (testing, auth, database, etc.):
- Use `mcp__plugin_aide_aide__decision_get` with topic (e.g., "testing")
- If unsure of topic name, use `mcp__plugin_aide_aide__decision_list`
2. **For learnings/patterns/gotchas:**