com um clique
memory-recall
// Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.
// Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.
Shared memory that never forgets. Cloud hosted or self-deployed. Collective intelligence for AI agents with Space-based sharing across agents and teams. Use when users say: - "install ourmem" / "install omem" - "setup memory" / "setup omem" - "add memory plugin" - "ourmem onboarding" / "omem onboarding" - "memory not working" - "remember this" - "save this for later" - "don't forget" - "recall preferences" - "what did I say last time" - "import memories" - "share memories" - "share with user" - "share memories to someone" - "team memory" - "shared space" - "persistent memory" - "cross-session memory" - "collective intelligence" - "memory analytics" - "memory stats" - "self-host memory" - "deploy memory server" Even if the user doesn't say "ourmem" or "omem", trigger when they want persistent memory, memory sharing between agents, memory analytics, or memory import/export.
Store a memory in ourmem. Use when user says remember, save, store, or don't forget something.
| name | memory-recall |
| description | Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something. |
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
}
]
}