🧠
AI EngineeringRust

Memory Store

by ourmem

Memory Store is an AI Engineering skill for Claude Code, published by ourmem in omem.

172 stars8 forkson ourmem/omemAdded 2026/09/07+1% in starsRepository updated 2026/05/24
ai-agentai-memoryclaude-codelancedbllmmcp-servermemory-sharingopenclawopencodepersistent-memoryrustvector-search
Install in seconds
Install Memory Store
Copy Memory Store into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/ourmem/omem/tree/main/plugins/claude-code/skills/memory-store ~/.claude/skills/memory-store

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/ourmem/omem.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
plugins/claude-code/skills/memory-store/SKILL.md in ourmem/omem
Installs to
~/.claude/skills/memory-store
Collection
One of 4 skills cataloged from this repository
Category
AI Engineering3475 skills

What Memory Store does

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.

Memory Store is cataloged under AI Engineering on DirSkills. Memory Store comes from a repository tagged ai-agent, ai-memory, claude-code, lancedb and llm.

Documentation

README

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

Frequently asked about Memory Store

  • What else does ourmem publish alongside Memory Store?

    Memory Store is one of 4 skills that DirSkills catalogs from ourmem/omem, the repository it ships in. Its siblings there include Memory Recall, OurMem Bootstrap and Ourmem. Each one is a separate skill with its own page in this directory, installs the same way Memory Store does, and is maintained by ourmem in that same repository. The rest of the collection is listed on the ourmem/omem page.

  • How does Memory Store compare to other AI Engineering skills?

    Memory Store ranks #3251 by stars among the 3475 AI Engineering skills in this catalog. The most-starred ones next to it are Architecture Decision Records, AI-First Engineering and Agentic OS. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Memory Store against them. Open each page to compare what they document and how they install.