From Allura Memory
Store a new memory in Allura Brain. Use when the user asks to "remember this", "store this", "save to memory", "log this decision", "add to brain", "note that", "record this", or any request to persist knowledge, decisions, insights, or context for future recall. Also triggers on "memory add", "store in allura", or "save this for later".
How this skill is triggered — by the user, by Claude, or both
Slash command
/allura-memory-cowork:rememberThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Store new memories in Allura Brain via `mcp__allura-brain__memory_add`. Memories are scored at write time and routed through the curator pipeline.
Store new memories in Allura Brain via mcp__allura-brain__memory_add. Memories are scored at write time and routed through the curator pipeline.
Required:
| Param | Type | Notes |
|---|---|---|
content | string | The memory content — be specific and self-contained |
group_id | string | Must match ^allura-[a-z0-9-]+$. Default: allura-system |
Optional:
| Param | Type | Notes |
|---|---|---|
user_id | string | Who created this memory |
agent_id | string | Which agent stored it (e.g. brooks, woz) |
metadata | object | Arbitrary key-value pairs for context |
Extract the essential information from the user's request and store it as a clear, self-contained statement. Apply the Minimal Viable Information (MVI) principle:
Good memory content:
"Architecture decision: RuVector is the primary backend for episodic retrieval. Hybrid search uses vector ANN + BM25 RRF fusion. Decided 2026-04-28."
Bad memory content:
"We talked about search stuff and decided to use the new thing."
When storing memories, include relevant metadata:
{
"source": "conversation",
"category": "architecture-decision",
"confidence": "high",
"tags": ["search", "ruvector", "hybrid"]
}
Common categories: architecture-decision, blocker, insight, requirement, session-note, learning, pattern.
memory_add with group_id: "allura-system" (or user-specified group)group_id — pattern ^allura-[a-z0-9-]+$npx claudepluginhub allura-ecosystem/allura_memory --plugin allura-memory-coworkCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.