Skip to content
Data
Skill

/memory-recall

Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.

From plugin
omem
1993 skills1 MCP
Install
$ npx -y skills add ourmem/omem --skill memory-recall --agent claude-code

How 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.md
name: 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
    }
  ]
}
Ships withomem

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.

Get the whole plugin
Stats
199
Stars
9
Forks
Maintained
Maintenance
Rust
Language
2mo ago
Last commit
4mo ago
Created

Repo: ourmem/omem