From ourmem
Searches ourmem for relevant memories using semantic search API. Useful when users ask to find, recall, search, or remember information.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ourmem:memory-recallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search ourmem for relevant memories using semantic search.
Search ourmem for relevant memories using semantic 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.
The API returns:
{
"results": [
{
"memory": {
"id": "...",
"content": "...",
"tags": ["..."],
"created_at": "..."
},
"score": 0.95
}
]
}
npx claudepluginhub ourmem/omem --plugin ourmemSearches and surfaces relevant memories from past sessions to inform current work with decisions, patterns, and learnings. Supports hybrid, vector, and text search modes with namespace filtering.
Search Memex long-term memory for relevant information. Returns facts, notes, and entities matching the query.
Searches PowerMem for relevant memories about the user, project, or past decisions to tailor responses.