---
name: Memory Store
slug: memory-store
category: AI Engineering
description: Memory Store saves information to ourmem for persistent memory across sessions. Use it when a user asks to remember, save, store, or not forget something.
github: "https://github.com/ourmem/omem/tree/main/plugins/claude-code/skills/memory-store"
language: Rust
stars: 172
forks: 8
install: "npx degit https://github.com/ourmem/omem/tree/main/plugins/claude-code/skills/memory-store ~/.claude/skills/memory-store"
installs_to: ~/.claude/skills/memory-store
source_path: plugins/claude-code/skills/memory-store/SKILL.md
collection_size: 4
category_size: 3475
collection_url: "https://dirskills.com/collections/ourmem/omem"
added: 2026-09-07T05:22:17.013Z
last_synced: 2026-09-07T05:22:17.013Z
canonical_url: "https://dirskills.com/skills/memory-store"
---

# Memory Store

Memory Store saves information to ourmem for persistent memory across sessions. Use it when a user asks to remember, save, store, or not forget something.

**Install:**

```bash
npx degit https://github.com/ourmem/omem/tree/main/plugins/claude-code/skills/memory-store ~/.claude/skills/memory-store
```

## README

# 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": "..."
}
```
