From claude-memory
Stores and recalls long-term memory for project facts like tech stacks, conventions, decisions, and preferences. Use for persisting conversation-learned info or retrieving stored knowledge across sessions.
npx claudepluginhub codenamev/claude_memory --plugin claude-memoryThis skill uses the workspace's default tool permissions.
You have access to a long-term memory system. Use it to remember important facts across sessions.
PROACTIVELY query Forgetful MCP (mcp__forgetful__* tools) when starting work on any project, when user references past decisions or patterns, when implementing features that may have been solved before, or when needing context about preferences. Save important decisions, patterns, and architectural insights to memory.
Manages AI memories: saves decisions/patterns/facts with categories/tags, searches context, lists/deletes entries, rescans project architecture via MCP tools and /remember /forget.
Loads and applies project memories from prior sessions for consistent decisions, conventions, and preferences. Stores new entries automatically or via /remember.
Share bugs, ideas, or general feedback.
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 duplicates