From mem0
Stores a memory verbatim from user input with type classification (decision, preference, convention, learning) and metadata. Activated when user says 'remember this', 'save this', 'note that'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mem0:rememberThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Store a fact or learning directly into mem0.
Store a fact or learning directly into mem0.
The user provides the content as an argument: /mem0:remember <text>
If no text was provided, ask: "What should I remember?"
Based on the content, pick the best metadata.type:
| Content signal | Type |
|---|---|
| "we decided...", "always use...", "never..." | decision |
| "X doesn't work because...", "don't try..." | anti_pattern |
| "I prefer...", "use X instead of Y" | user_preference |
| "the convention is...", "we always..." | convention |
| "learned that...", "figured out..." | task_learning |
| setup, env, tooling, config | environmental |
| anything else | task_learning |
Call add_memory with:
text="<the user's text>"user_id=<active_user_id>app_id=<active_project_id>metadata={"type": "<classified_type>", "branch": "<active_branch>", "confidence": 1.0, "source": "remember_command"}infer=Falseinfer=False because the user stated the fact explicitly — no extraction needed.
confidence=1.0 because the user explicitly asked to store this.
The add_memory response returns event_id (not memory_id) because writes are async.
Call get_event_status(event_id=<event_id>) once.
SUCCEEDED: print the memory ID from the result.PENDING or processing: print with the event ID as fallback.Remembered as <type>: "<content, first 80 chars>"
Memory ID: <id from event status>
Append ... only if content was truncated (longer than 80 chars).
npx claudepluginhub mem0ai/mem0 --plugin mem0Saves durable facts, decisions, and preferences to the memini memory service. Automatically invoked when the user says 'remember this' or after discovering root causes, making architectural decisions, or learning project conventions.
Saves facts, decisions, and context to Memsy memory for future sessions. Strips framing verbs and persists the substance verbatim via memsy_ingest.
Saves 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.