From mem9
Saves important information to Mem9 shared memory via Bash curl for persistence across Claude Code sessions. Use when users request to remember, note down, or save details.
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.
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-claude-pluginCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.