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

Claude Mind Memory

Search, query and inspect Claude's persistent memory stored in a single portable .mv2 file.

UtilitiesIntermediate★ 575⑂ 58AI score 8/10Last updated: Jan 19, 2026

What it does

  • Runs semantic search over persistent memories kept in .claude/mind.mv2 via find.js.
  • Answers natural-language questions from past project context via ask.js.
  • Shows memory statistics (stats.js) and a timeline of recent entries (timeline.js).
  • Auto-classifies entries into 10 types: discovery, decision, problem, solution, pattern, warning, success, refactor, bugfix, feature.

Who it's for

  • Developers tired of re-explaining project context at the start of every session.
  • Teams that want decision history and troubleshooting notes shareable as one file.
  • Anyone who wants a portable, Git-committable knowledge store.

Examples

  1. node "$CLAUDE_PLUGIN_ROOT/dist/scripts/find.js" "authentication" 5 — pull the 5 most relevant auth-related notes.
  2. node "$CLAUDE_PLUGIN_ROOT/dist/scripts/ask.js" "What was the CORS solution?" — recover a past fix from memory.
  3. Hand .claude/mind.mv2 to a new teammate for instant onboarding on project history.

· · · 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/memvid/claude-brain/HEAD/skills/memory/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 skills/memory folder from the GitHub repo memvid/claude-brain into my ~/.claude/skills/memory/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/memvid/claude-brain.git && cd claude-brain && npm install && npm run build && mkdir -p ~/.claude/skills && cp -r skills/memory ~/.claude/skills/memory

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

  1. Verify Node.js (18+ recommended) with node -v.
  2. Clone the repo: git clone https://github.com/memvid/claude-brain.git
  3. Install and build so the scripts exist: cd claude-brain && npm install && npm run build (this creates dist/scripts/*.js).
  4. Copy the skill: mkdir -p ~/.claude/skills && cp -r skills/memory ~/.claude/skills/memory
  5. Point CLAUDE_PLUGIN_ROOT at the cloned repo directory, or register the project as a Claude Code plugin so the variable resolves.
  6. Restart Claude Code and ask for "recent memories" to confirm stats.js and timeline.js run without errors.