From mem0
Searches and injects relevant memories into context before starting work on a task. Use when beginning a new task, switching context, or when project history, past decisions, or coding conventions need to be loaded.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mem0:context-loaderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Pre-fetches relevant memories to prime context before working on a task.
Pre-fetches relevant memories to prime context before working on a task.
Extract topics from current message/task. Identify: file paths, module names, feature areas, error patterns.
Run 2-4 parallel search_memories calls with different angles:
| Query angle | Filter | Purpose |
|---|---|---|
| Feature/module name | {"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}, {"metadata": {"type": "decision"}}]} | Architecture decisions |
| File paths mentioned | {"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}, {"metadata": {"type": "convention"}}]} | Coding patterns |
| Error keywords (if any) | {"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}, {"metadata": {"type": "anti_pattern"}}]} | Known pitfalls |
| Broad project context | {"AND": [{"user_id": "<id>"}, {"app_id": "<pid>"}]} | Catch-all |
Deduplicate results by memory ID across all search responses.
Output compact context block (max 10 memories):
context-loader: loaded <N> memories for "<task summary>"
- [decision] <content> [mem0:<short_id>]
- [convention] <content> [mem0:<short_id>]
- [anti_pattern] <content> [mem0:<short_id>]
npx claudepluginhub igortavcar/mem0 --plugin mem0Searches and injects relevant memories into context before starting work on a task. Use when beginning a new task, switching context, or when project history, past decisions, or coding conventions need to be loaded.
Searches memini memory service for prior context, decisions, or facts relevant to the current task. Use before file edits, architectural changes, or debugging recurring issues.
Persists project decisions, preferences, and conventions across Claude Code sessions by storing and retrieving memories from a local JSON file. Automatically loads memories on session start and applies them silently.