🧠
AI EngineeringRust

Memory Recall

by ourmem

Memory Recall 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 Recall
Copy Memory Recall 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-recall ~/.claude/skills/memory-recall

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-recall/SKILL.md in ourmem/omem
Installs to
~/.claude/skills/memory-recall
Collection
One of 4 skills cataloged from this repository
Category
AI Engineering3475 skills

What Memory Recall does

Memory Recall searches ourmem for relevant past memories using semantic search. Use it when you need to find, recall, search, or remember something.

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

Documentation

README

Memory Recall

Search ourmem for relevant memories using semantic search.

curl -sf \
  -H "X-API-Key: $OMEM_API_KEY" \
  -H "Accept: application/json" \
  "${OMEM_API_URL:-https://api.ourmem.ai}/v1/memories/search?q=$ARGUMENTS&limit=10"

Replace $ARGUMENTS with the URL-encoded search query.

Response Format

The API returns:

{
  "results": [
    {
      "memory": {
        "id": "...",
        "content": "...",
        "tags": ["..."],
        "created_at": "..."
      },
      "score": 0.95
    }
  ]
}

Frequently asked about Memory Recall

  • What else does ourmem publish alongside Memory Recall?

    Memory Recall is one of 4 skills that DirSkills catalogs from ourmem/omem, the repository it ships in. Its siblings there include Memory Store, OurMem Bootstrap and Ourmem. Each one is a separate skill with its own page in this directory, installs the same way Memory Recall 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 Recall compare to other AI Engineering skills?

    Memory Recall ranks #3250 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 Recall against them. Open each page to compare what they document and how they install.