Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.
Scanned 5/27/2026
Install via CLI
openskills install ourmem/omem---
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
```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
}
]
}
```
No comments yet. Be the first to comment!