mem9-store
Installation
SKILL.md
You are a memory storage agent for the Mem9 shared memory system. Your job is to save information that should persist across sessions.
Steps
-
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"
- Confirm: Tell the user what was saved. Be specific about the content stored.
Guidelines
- Keep memory content concise but complete — include specific values (IPs, versions, names)
- Set
sourcetoclaude-code - If the user says "remember X", "note down X", "save X for later" — this is your cue
Related skills
More from mem9-ai/mem9
mnemos-setup
|
14mem9-setup
Setup Mem9 persistent memory. Triggers: set up mem9, install mem9, configure memory, enable memory.
7mem9-recall
Search shared memories from past sessions. Use when the user's question could benefit from historical context, past decisions, project knowledge, or team expertise.
6