skills/memory/SKILL.md
Store and recall long-term memory. Use when persisting facts learned during conversations or recalling stored knowledge about projects and preferences.
npx skillsauth add codenamev/claude_memory memoryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 duplicatestools
Automatically install, configure, or upgrade ClaudeMemory
development
Workflow for checking memory before code exploration. Auto-loaded when answering questions about code, architecture, or patterns.
tools
Diagnose ClaudeMemory installation and configuration issues. Use when memory tools fail or setup seems broken.
tools
Knowledge about analyzing projects for tech stack, frameworks, tools, and conventions. Use when asked to understand or learn about a project's structure.