Help us improve
Share bugs, ideas, or general feedback.
From mem0
Integrates Mem0 persistent memory for Claude Code tasks using MCP tools. Retrieves relevant memories on new tasks, stores learnings like decisions and strategies, captures session states.
npx claudepluginhub mem0ai/mem0 --plugin mem0How this skill is triggered — by the user, by Claude, or both
Slash command
/mem0:mem0-codexThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have access to persistent memory via the mem0 MCP tools. Follow this protocol to maintain context across sessions.
Proactively saves decisions, conventions, bugs, discoveries, and preferences to persistent Engram memory across sessions using mem_save and related tools.
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.
Manages persistent AI memory across coding sessions: remember decisions/patterns, recall context, learn from bugs/mistakes. Auto-triggers on memory prompts, key events like decisions/fixes via Claude Code hooks.
Share bugs, ideas, or general feedback.
You have access to persistent memory via the mem0 MCP tools. Follow this protocol to maintain context across sessions.
search_memories with a query related to the current task or project to load relevant context.get_memories to browse all stored memories for this user.Extract key learnings and store them using the add_memory tool:
{"type": "decision"}{"type": "task_learning"}{"type": "anti_pattern"}{"type": "user_preference"}{"type": "environmental"}{"type": "convention"}Memories can be as detailed as needed -- include full context, reasoning, code snippets, file paths, and examples. Longer, searchable memories are more valuable than vague one-liners.
If context is about to be compacted or the session is ending, store a comprehensive session summary:
## Session Summary
### User's Goal
[What the user originally asked for]
### What Was Accomplished
[Numbered list of tasks completed]
### Key Decisions Made
[Architectural choices, trade-offs discussed]
### Files Created or Modified
[Important file paths with what changed]
### Current State
[What is in progress, pending items, next steps]
Include metadata: {"type": "session_state"}