From Allura Memory
Search and retrieve Allura Brain memories. Use when the user asks to "search memories", "find what we decided about", "look up", "recall", "what do we know about", "get memory", "find memory by ID", or any request to retrieve stored knowledge from Allura Brain. Also triggers on "search allura", "brain search", or "what's in memory about".
How this skill is triggered — by the user, by Claude, or both
Slash command
/allura-memory-cowork:search-memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search and retrieve memories from Allura Brain using hybrid vector + BM25 ranking or direct ID lookup.
Search and retrieve memories from Allura Brain using hybrid vector + BM25 ranking or direct ID lookup.
memory_search)Call mcp__allura-brain__memory_search with the user's query. This runs two-pass RRF fusion:
ts_rank on PostgreSQL content_tsv generated column1/(60+rank_v) + 1/(60+rank_t)Required parameters:
| Param | Type | Notes |
|---|---|---|
query | string | Natural language search query |
Optional parameters:
| Param | Type | Default | Notes |
|---|---|---|---|
user_id | string | — | Filter to a specific user's memories |
limit | number | 10 | Max results (1–100) |
search_mode | string | "hybrid" | "hybrid", "vector", or "text" |
Interpreting results:
Each result includes score, content, metadata, and created_at. Higher scores = better match. Present results in a scannable format: show the content summary, relevance score, and when it was stored. If metadata includes agent_id or source, mention the origin.
memory_get)Call mcp__allura-brain__memory_get when the user provides a specific memory ID.
Required parameters:
| Param | Type | Notes |
|---|---|---|
memory_id | string | The UUID of the memory |
memory_search with the most relevant keywords extracted from their requestmemory_get directlyEvery query MUST include group_id matching the pattern ^allura-[a-z0-9-]+$. Default to allura-system unless the user specifies otherwise. Missing group_id causes a CHECK constraint failure.
user_id or reduce limit"vector" mode for semantic/conceptual queries"text" mode for exact keyword matchingnpx 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.