/memory-recall
Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.
$ npx -y skills add ourmem/omem --skill memory-recall --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/memory-recall
Context preview
The summary Claude sees to decide when to auto-load this skill.
Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.
SKILL.md
memory-recall.SKILL.mdname: memory-recall description: Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.
Memory Recall
Search ourmem for relevant memories using semantic search.
How to search
curl -sf \
-H "X-API-Key: $OMEM_API_KEY" \
-H "Accept: application/json" \
"${OMEM_API_URL:-https://api.ourmem.ai}/v1/memories/search?q=$ARGUMENTS&limit=10"Replace `$ARGUMENTS` with the URL-encoded search query.
Response Format
The API returns:
{
"results": [
{
"memory": {
"id": "...",
"content": "...",
"tags": ["..."],
"created_at": "..."
},
"score": 0.95
}
]
}Shared Memory That Never Forgets — persistent memory for AI agents with Space-based sharing across agents and teams. Plugins for OpenCode, Claude Code, OpenClaw, MCP Server.
Other skills on omem.
- /memory-store
Store a memory in ourmem. Use when user says remember, save, store, or don't forget something.
Open skill - /ourmem
Shared memory that never forgets. Cloud hosted or self-deployed. Collective intelligence for AI agents with Space-based sharing across agents and teams. Use when users say: - "install ourmem" / "install omem" - "setup memory" / "setup omem" - "add memory plugin" - "ourmem
Open skill

