# Memory Store

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

- Skill: `ourmem/memory-store` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ourmem/memory-store`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ourmem/memory-store/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ourmem (https://skillmd.com/u/ourmem)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ourmem/memory-store

---


# Memory Store

Save information to ourmem for persistent memory across sessions.

## How to store

```bash
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:
```json
{
  "id": "...",
  "content": "...",
  "tags": ["manual"],
  "source": "claude-code",
  "created_at": "..."
}
```

