memory-management
Installation
SKILL.md
Memory Management
Persistent memory system that ensures Claude never repeats mistakes and always applies learned patterns across conversations.
4 Tools
mcp__claude-recall__load_rules- Load all active rules before starting work. No query needed.mcp__claude-recall__store_memory- Store a rule or learning. Immediately active in this conversation.mcp__claude-recall__search_memory- Search memories by keyword. Use to find specific memories before making decisions.mcp__claude-recall__delete_memory- Delete a specific memory by ID. Use search_memory first to find the ID.
When to Use
Loading (Recall)
- First action of every session — Call
load_rulesbefore ANY tool call, including Read/Glob/Grep. Rules must inform exploration, not just editing. - After context compression — If context was compressed or conversation is long, call
load_rulesagain. Earlier rules may have been lost. - Switching task areas — When moving from one domain to another (e.g., tests → database → CI), call
search_memorywith the new area as query. - Before modifying a file — Call
search_memorywith the file path or module name to check for file-specific conventions.