From ourmem
Searches ourmem for relevant memories using semantic search API. Useful when users ask to find, recall, search, or remember information.
npx claudepluginhub ourmem/omem --plugin ourmemThis skill uses the workspace's default tool permissions.
Search ourmem for relevant memories using semantic search.
Searches Mem9 shared memories from past sessions via Bash API calls to retrieve relevant historical context, decisions, project knowledge, or team expertise.
Searches mnemonic memory files by namespace, tag, type, date, title, confidence, or full-text using ripgrep and find, with progressive disclosure and optional semantic search via qmd.
Searches memory store and threads via nmem CLI for relevant past insights on contextual signals like continuity or recurring themes. Filters by importance, labels, time.
Share bugs, ideas, or general feedback.
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
}
]
}