$npx -y skills add memvid/claude-brain --skill mindClaude Mind - Search and manage Claude's persistent memory stored in a single portable .mv2 file
| 1 | # Claude Mind |
| 2 | |
| 3 | You have access to a persistent memory system powered by Claude Mind. All your observations, discoveries, and learnings are stored in a single `.claude/mind.mv2` file. |
| 4 | |
| 5 | ## How to Execute Memory Commands |
| 6 | |
| 7 | Use the bundled SDK scripts via Node.js (NOT the CLI). The scripts are at `${CLAUDE_PLUGIN_ROOT}/dist/scripts/`. |
| 8 | |
| 9 | ### Search Memories |
| 10 | ```bash |
| 11 | node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/find.js" "<query>" [limit] |
| 12 | ``` |
| 13 | |
| 14 | Examples: |
| 15 | - `node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/find.js" "authentication" 5` |
| 16 | - `node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/find.js" "database schema" 10` |
| 17 | |
| 18 | ### Ask Questions |
| 19 | ```bash |
| 20 | node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/ask.js" "<question>" |
| 21 | ``` |
| 22 | |
| 23 | Examples: |
| 24 | - `node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/ask.js" "Why did we choose React?"` |
| 25 | - `node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/ask.js" "What was the CORS solution?"` |
| 26 | |
| 27 | ### View Statistics |
| 28 | ```bash |
| 29 | node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/stats.js" |
| 30 | ``` |
| 31 | |
| 32 | ### View Recent Memories |
| 33 | ```bash |
| 34 | node "${CLAUDE_PLUGIN_ROOT}/dist/scripts/timeline.js" [count] |
| 35 | ``` |
| 36 | |
| 37 | ## Memory Types |
| 38 | |
| 39 | Memories are automatically classified into these types: |
| 40 | - **discovery** - New information discovered |
| 41 | - **decision** - Important decisions made |
| 42 | - **problem** - Problems or errors encountered |
| 43 | - **solution** - Solutions implemented |
| 44 | - **pattern** - Patterns recognized in code/data |
| 45 | - **warning** - Warnings or concerns noted |
| 46 | - **success** - Successful outcomes |
| 47 | - **refactor** - Code refactoring done |
| 48 | - **bugfix** - Bugs fixed |
| 49 | - **feature** - Features added |
| 50 | |
| 51 | ## File Location |
| 52 | |
| 53 | Your memory is stored at: `.claude/mind.mv2` |
| 54 | |
| 55 | This file is: |
| 56 | - **Portable** - Copy it anywhere, share with teammates |
| 57 | - **Git-friendly** - Commit to version control |
| 58 | - **Self-contained** - Everything in ONE file |
| 59 | - **Searchable** - Instant semantic search |
| 60 | |
| 61 | ## Usage Tips |
| 62 | |
| 63 | 1. **Start of session**: Recent memories are automatically injected as context |
| 64 | 2. **During coding**: Observations are captured automatically from tool use |
| 65 | 3. **Searching**: Use natural language queries to find relevant past context |
| 66 | 4. **Sharing**: Send the `.mind.mv2` file to teammates for instant onboarding |