Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

mem-search

Retrieves work from previous sessions in claude-mem using a token-efficient 3-layer search workflow.

UtilitiesIntermediate93,0278,178AI score 7/10Last updated: Sep 2, 2026

What it does

  • Fires when you ask to search memory, "did we already solve this?", or "how did we do X last time?"
  • Enforces a 3-layer flow: ① search(query) for an ID index → ② timeline(anchor=ID) for nearby context → ③ get_observations(ids=[...]) for full details of only those IDs.
  • Prevents dumping full observations before IDs are filtered, keeping context usage low.
  • Stamps platformSource as cursor or grok-bot on writes and keeps records from other hosts when reading.

Who it's for

  • Users already running (or planning to run) the claude-mem MCP server
  • Developers switching between Cursor and other hosts who want one shared memory
  • Long-running projects where past decisions must be re-found quickly

Examples

  1. "How did we fix that CORS error before?" → search for IDs, then pull only the relevant observation.
  2. "Did we discuss refactoring the payments module?" → search, then timeline for surrounding context.
  3. Query both Cursor and other host records together for a complete work history.

Prerequisite: the claude-mem MCP must be installed; otherwise run npx claude-mem install --ide <host> first.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/thedotmack/claude-mem/HEAD/claude-mem-cursor/skills/mem-search/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the claude-mem-cursor/skills/mem-search folder from the GitHub repo thedotmack/claude-mem into my ~/.claude/skills/thedotmack-mem-search-2/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/thedotmack/claude-mem.git && mkdir -p ~/.claude/skills && cp -r claude-mem/claude-mem-cursor/skills/mem-search ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/thedotmack/claude-mem.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r claude-mem/claude-mem-cursor/skills/mem-search ~/.claude/skills/
  5. Install the MCP server: npx claude-mem install --ide cursor (adjust --ide for your host).
  6. Restart Claude Code or Cursor, then ask "how did we solve this last time?" to verify it triggers.
View source on GitHubLicense: Apache-2.0