You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keeps errors, structure, key functions. Drops the noise.
97
126
127
+
Work longer without hitting limits.
128
+
98
129
---
99
130
100
-
## Commands
131
+
## ❓ FAQ
132
+
133
+
<details>
134
+
<summary><b>Why is the .mv2 file ~4MB even when empty?</b></summary>
135
+
136
+
The `.mv2` format is designed for **instant operations** on files of any size. It pre-allocates:
137
+
138
+
-**Vector index** for semantic search (find memories by meaning, not just keywords)
139
+
-**Write-ahead log (WAL)** for crash-safe writes
140
+
-**Block-aligned storage** for O(1) random access
141
+
142
+
This is the same architecture used by SQLite, LevelDB, and other production databases. The 4MB overhead enables sub-millisecond operations whether you have 10 memories or 10 million.
143
+
144
+
*Think of it like an empty filing cabinet - it takes up space, but it's ready to organize thousands of documents instantly.*
145
+
146
+
</details>
147
+
148
+
<details>
149
+
<summary><b>How big does the file get?</b></summary>
150
+
151
+
~1KB per memory. 1000 memories ≈ 1MB additional. The base 4MB is fixed overhead.
152
+
153
+
</details>
154
+
155
+
<details>
156
+
<summary><b>Is my data private?</b></summary>
157
+
158
+
**100% local.** Nothing leaves your machine. No telemetry. No cloud sync. You own your data.
159
+
160
+
The `.mv2` file is just a file - encrypt it, back it up, delete it, share it. Your choice.
161
+
162
+
</details>
163
+
164
+
<details>
165
+
<summary><b>How fast is it?</b></summary>
166
+
167
+
Native Rust core via [memvid](https://github.com/memvid/memvid). Sub-millisecond operations:
168
+
169
+
- Search: < 1ms for 10K+ memories
170
+
- Insert: < 0.5ms
171
+
- Load context: < 5ms
172
+
173
+
</details>
174
+
175
+
<details>
176
+
<summary><b>Can I reset Claude's memory?</b></summary>
101
177
102
178
```bash
103
-
/mind search "authentication"# find past context
104
-
/mind ask "why postgres?"# ask your memory
105
-
/mind recent # what happened lately
106
-
/mind stats # how much is stored
179
+
rm .claude/mind.mv2
107
180
```
108
181
109
-
---
182
+
Or use `/mind clear` (coming soon).
110
183
111
-
## FAQ
184
+
</details>
112
185
113
-
**How big does the file get?**
114
-
~1KB per memory. 1000 memories ≈ 1MB.
186
+
<details>
187
+
<summary><b>Does it work with multiple projects?</b></summary>
115
188
116
-
**Privacy?**
117
-
Everything stays on your machine. Nothing uploaded.
189
+
Yes! Each project gets its own `.claude/mind.mv2` file. Memories are project-scoped by default.
118
190
119
-
**Speed?**
120
-
Native Rust core. Sub-millisecond operations.
121
-
122
-
**Reset?**
123
-
Delete `.claude/mind.mv2` or run `/mind clear`.
191
+
</details>
124
192
125
193
---
126
194
127
-
## Config (optional)
195
+
## 🔧 Configuration (Optional)
196
+
197
+
Create `.claude/mind.config.json`:
128
198
129
199
```json
130
200
{
@@ -134,12 +204,26 @@ Delete `.claude/mind.mv2` or run `/mind clear`.
134
204
}
135
205
```
136
206
207
+
Most users don't need to configure anything.
208
+
137
209
---
138
210
211
+
## 🤝 Contributing
212
+
213
+
We love contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
214
+
215
+
**Quick wins:**
216
+
- Add to [awesome-claude-skills](https://github.com/travisvn/awesome-claude-skills)
217
+
- Star the repo ⭐
218
+
- Share on Twitter/X with a demo
219
+
220
+
---
221
+
222
+
139
223
<divalign="center">
140
224
141
-
MIT License
225
+
**MIT License** • Built on [memvid](https://github.com/memvid/memvid) — the single-file memory engine
142
226
143
-
Built on [memvid](https://github.com/Memvid/memvid) — the single-file memory engine.
0 commit comments