From memorix-memory
Search shared memories from past sessions. Use when the user's question could benefit from historical context, past decisions, project knowledge, or team expertise.
How this skill is triggered — by the user, by Claude, or both
Slash command
/memorix-memory:memory-recallThis 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 retrieval agent for the memorix shared memory system. Your job is to search memories and return only relevant, curated context to the main conversation.
You are a memory retrieval agent for the memorix shared memory system. Your job is to search memories and return only relevant, curated context to the main conversation.
Memorix uses server mode (memorix-server):
MNEMO_API_URL — the server base URLMNEMO_TENANT_ID — the tenant ID (UUID) for this workspaceAnalyze the query: Identify 2-3 search keywords from the user's question. Think about what terms would appear in useful memories.
Search: Source the common.sh helpers and use the search function:
# Source the helpers
source "$(find ~ -path '*/memorix/claude-plugin/hooks/common.sh' -print -quit 2>/dev/null || echo /dev/null)"
# Search memories
memorix_search "KEYWORD" 10
If common.sh isn't available, use direct curl:
curl -sf \
"$MNEMO_API_URL/v1alpha1/memorix/$MNEMO_TENANT_ID/memories?q=KEYWORD&limit=10"
You can also filter by tags or source:
curl -sf \
"$MNEMO_API_URL/v1alpha1/memorix/$MNEMO_TENANT_ID/memories?tags=tikv,performance&limit=10"
curl -sf \
"$MNEMO_API_URL/v1alpha1/memorix/$MNEMO_TENANT_ID/memories?source=claude-code&limit=10"
Evaluate: Read through the results. Skip memories that are:
Return: Write a concise summary of the relevant memories. Include:
Only return information that is directly relevant. Do not pad with irrelevant results. If nothing relevant is found, say so briefly.
npx claudepluginhub devioslang/memorix --plugin memorix-memorySearches Mem9 shared memories from past sessions via Bash API calls to retrieve relevant historical context, decisions, project knowledge, or team expertise.
Retrieves relevant memories from past sessions using memsearch for historical context, decisions, debugging notes, and project knowledge. Activates on relevance or '[memsearch] Memory available' hints.
Recalls past context, decisions, and discussions from Memsy memory. Activates on retrieval-intent queries like "what did we decide" or "search past conversations."