From claude-memory
Stores and recalls long-term facts across sessions using MCP tools. Useful for persisting tech stack, conventions, decisions, and preferences.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-memory:memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have access to a long-term memory system. Use it to remember important facts across sessions.
You have access to a long-term memory system. Use it to remember important facts across sessions.
After completing a task or learning something important about the project, store durable facts using memory.store_extraction. Look for:
Call the memory.store_extraction MCP tool with:
{
"entities": [
{"type": "database", "name": "postgresql"}
],
"facts": [
{
"subject": "repo",
"predicate": "uses_database",
"object": "postgresql",
"quote": "We use PostgreSQL for persistence",
"strength": "stated",
"scope_hint": "project"
}
]
}
| Predicate | Use for | Example |
|---|---|---|
uses_database | Database choice | postgresql, redis |
uses_framework | Framework | rails, react, nextjs |
deployment_platform | Where deployed | vercel, aws, heroku |
convention | Coding standard | "4-space indentation" |
decision | Architectural choice | "Use microservices" |
auth_method | Auth approach | "JWT tokens" |
project: Only this project (default)global: All projects (user preferences)Use global when user says "always", "in all projects", or "my preference".
Use memory.recall to search for relevant facts:
{"query": "database", "limit": 10}
memory.recall - Search facts by querymemory.store_extraction - Store new factsmemory.explain - Get fact details with provenancememory.promote - Promote project fact to globalmemory.status - Check database healthmemory.changes - Recent updatesmemory.conflicts - Open contradictionsmemory.recall to avoid duplicatesnpx claudepluginhub codenamev/claude_memory --plugin claude-memorySaves facts, decisions, project details, or preferences to agd-memory via /remember or phrases like 'remember this', 'save to memory'. Direct save or interactive draft+confirm modes.
Captures durable knowledge from sessions into rekal memory with deduplication. Extracts preferences, decisions, architecture, and procedures; checks for duplicates; stores or supersedes.
Manages persistent memory across Claude Code sessions via AutoMem. Recall project context, architectural decisions, bug fixes, user preferences, and patterns at session start or debugging.