---
name: Memory Recall
slug: memory-recall-6
category: AI Engineering
description: Memory Recall searches ourmem for relevant past memories using semantic search. Use it when you need to find, recall, search, or remember something.
github: "https://github.com/ourmem/omem/tree/main/plugins/claude-code/skills/memory-recall"
language: Rust
stars: 172
forks: 8
install: "npx degit https://github.com/ourmem/omem/tree/main/plugins/claude-code/skills/memory-recall ~/.claude/skills/memory-recall"
installs_to: ~/.claude/skills/memory-recall
source_path: plugins/claude-code/skills/memory-recall/SKILL.md
collection_size: 4
category_size: 3475
collection_url: "https://dirskills.com/collections/ourmem/omem"
added: 2026-09-07T05:22:16.768Z
last_synced: 2026-09-07T05:22:16.768Z
canonical_url: "https://dirskills.com/skills/memory-recall-6"
---

# Memory Recall

Memory Recall searches ourmem for relevant past memories using semantic search. Use it when you need to find, recall, search, or remember something.

**Install:**

```bash
npx degit https://github.com/ourmem/omem/tree/main/plugins/claude-code/skills/memory-recall ~/.claude/skills/memory-recall
```

## README

# Memory Recall

Search ourmem for relevant memories using semantic search.

## How to search

```bash
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:
```json
{
  "results": [
    {
      "memory": {
        "id": "...",
        "content": "...",
        "tags": ["..."],
        "created_at": "..."
      },
      "score": 0.95
    }
  ]
}
```
