Memory Recall

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

ourmem 6a5bef9 708 B Updated

File contents

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
    }
  ]
}

ourmem/omem/tree/main/plugins/claude-code/skills/memory-recall commit 6a5bef90e9

Frequently asked questions

npx skillmds@latest add ourmem/memory-recall