# Memory Recall

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

- Skill: `ourmem/memory-recall` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ourmem/memory-recall`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ourmem/memory-recall/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ourmem (https://skillmd.com/u/ourmem)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ourmem/memory-recall

---


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

