Skip to content
Data
Skill

/memory-store

Store a memory in ourmem. Use when user says remember, save, store, or don't forget something.

From plugin
omem
1993 skills1 MCP
Install
$ npx -y skills add ourmem/omem --skill memory-store --agent claude-code

How 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.md
name: 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": "..."
}
Ships withomem

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.

Get the whole plugin
Stats
199
Stars
9
Forks
Maintained
Maintenance
Rust
Language
2mo ago
Last commit
4mo ago
Created

Repo: ourmem/omem