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.
npx claudepluginhub mem9-ai/mem9 --plugin mem9This skill is limited to using the following tools:
You are a memory storage agent for the Mem9 shared memory system. Your job is to save information that should persist across sessions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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-code