Help us improve
Share bugs, ideas, or general feedback.
From mem9
Saves concise user-specified information to Mem9 shared memory via Bash API for persistence across Claude Code sessions. Triggers on 'remember', 'note down', or 'save' requests.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mem9:mem9-storeThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a memory storage agent for the Mem9 shared memory system. Your job is to save information that should persist across sessions.
Share bugs, ideas, or general feedback.
You are a memory storage agent for the Mem9 shared memory system. Your job is to save information that should persist across sessions.
Extract the memory: From the user's request, identify what should be remembered. Be concise but preserve all key details (IPs, names, decisions, configs, etc.).
Choose tags: Pick 1-3 short tags that categorize this memory (e.g., infra, decision, config, debugging, team).
Store with a single curl call:
curl -sf --max-time 8 \
-H "Content-Type: application/json" \
-d '{"content":"THE MEMORY CONTENT","tags":["tag1","tag2"],"source":"claude-code"}' \
"${MEM9_API_URL:-https://api.mem9.ai}/v1alpha1/mem9s/${MEM9_TENANT_ID}/memories"
source to claude-codenpx claudepluginhub mem9-ai/mem9 --plugin mem9Saves facts, decisions, and context to Memsy memory for future sessions. Strips framing verbs and persists the substance verbatim via memsy_ingest.
Save information to Memex long-term memory. Captures the given text (or infers the most important context from the conversation) as a persistent note.
Stores important decisions, patterns, bug fixes, and lessons into Cortex persistent memory. Use after resolving bugs, making architecture choices, or when the user asks to remember something.