Memory (Claude Mind)
A persistent memory skill that keeps Claude's observations in one portable .mv2 file and lets you search or ask questions about them.
What it does
Claude Mind accumulates discoveries, decisions, problems and solutions from your coding sessions into a single .claude/mind.mv2 file. This skill teaches Claude the commands for working with that store:
find.js— search past memories with keywords or natural languageask.js— answer questions like "Why did we choose React?" from memorystats.js— show memory statisticstimeline.js— list the most recent memories
Memories are auto-classified into ten types (discovery, decision, problem, solution, pattern, warning, success, refactor, bugfix, feature). Because it is one file, it is trivial to commit to Git or hand to a teammate.
Who it's for
- Developers tired of re-explaining project context in every new session
- Teams that want a record of architectural decisions and troubleshooting
- Leads who want a single context file for fast onboarding
Examples
- New session: "What did we do about authentication before?" → runs
find.js "authentication" 5and summarizes the five closest memories. - Before a refactor: "How did we fix that CORS issue?" →
ask.jsanswers with the original solution and context. - Weekly review:
timeline.js 20pulls the last twenty memories to draft a progress summary.
· · · 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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 && mkdir -p ~/.claude/skills && cp -r claude-brain/skills/memory ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Make sure Node.js is installed (
node -v). - Clone the repo:
git clone https://github.com/memvid/claude-brain.git - Install dependencies and build as the repo instructs (e.g.
cd claude-brain && npm install && npm run build); adist/scripts/folder must exist. - Prefer the plugin installation described in the README, since the scripts rely on
CLAUDE_PLUGIN_ROOTbeing set correctly. - For a manual copy:
mkdir -p ~/.claude/skills && cp -r claude-brain/skills/memory ~/.claude/skills/, then fix thedist/scriptspaths to match your machine. - Restart Claude Code and try "search my memory for authentication work" to confirm it responds.
- Commit the generated
.claude/mind.mv2file to Git if you want to share memory with your team.