/memory-store
Store a memory in ourmem. Use when user says remember, save, store, or don't forget something.
$ npx -y skills add ourmem/omem --skill memory-store --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/memory-store
Context preview
The summary Claude sees to decide when to auto-load this skill.
Store a memory in ourmem. Use when user says remember, save, store, or don't forget something.
SKILL.md
memory-store.SKILL.mdname: memory-store description: Store a memory in ourmem. Use when user says remember, save, store, or don't forget something.
Memory Store
Save information to ourmem for persistent memory across sessions.
How to store
curl -sf \
-X POST \
-H "X-API-Key: $OMEM_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
"${OMEM_API_URL:-https://api.ourmem.ai}/v1/memories" \
-d '{"content": "$ARGUMENTS", "tags": ["manual"], "source": "claude-code"}'Replace `$ARGUMENTS` with the content to store.
Response Format
The API returns the created memory:
{
"id": "...",
"content": "...",
"tags": ["manual"],
"source": "claude-code",
"created_at": "..."
}Shared Memory That Never Forgets — persistent memory for AI agents with Space-based sharing across agents and teams. Plugins for OpenCode, Claude Code, OpenClaw, MCP Server.
Other skills on omem.
- /memory-recall
Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.
Open skill - /ourmem
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
Open skill

