From memorix-memory
Save important information to shared memory. Use when the user asks you to remember, note down, or save something for future sessions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/memorix-memory:memory-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 memorix shared memory system. Your job is to save information that should persist across sessions.
You are a memory storage agent for the memorix shared memory system. Your job is to save information that should persist across sessions.
Memorix uses server mode (memorix-server):
MNEMO_API_URL — the server base URLMNEMO_TENANT_ID — the tenant ID (UUID) for this workspaceExtract 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: Use the common.sh helper to save the memory:
# Source the helpers
source "$(find ~ -path '*/memorix/claude-plugin/hooks/common.sh' -print -quit 2>/dev/null || echo /dev/null)"
# Store the memory
memorix_post_memory '{"content":"THE MEMORY CONTENT HERE","tags":["tag1","tag2"],"source":"claude-code"}'
If common.sh isn't available, use direct curl:
curl -sf --max-time 8 \
-H "Content-Type: application/json" \
-H "X-Memorix-Agent-Id: ${MNEMO_AGENT_ID:-claude-code}" \
-d '{"content":"THE MEMORY CONTENT","tags":["tag1","tag2"],"source":"claude-code"}' \
"${MNEMO_API_URL}/v1alpha1/memorix/${MNEMO_TENANT_ID}/memories"
source to claude-codenpx claudepluginhub devioslang/memorix --plugin memorix-memorySaves 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.
Saves 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.