@augmnt-sh/mindcache 0.1.1 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -2
- package/dist/cli.js +101 -101
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,12 +30,28 @@ No plugins required. MindCache reads your vault directly from the filesystem.
|
|
|
30
30
|
# Interactive setup
|
|
31
31
|
npx @augmnt-sh/mindcache init
|
|
32
32
|
|
|
33
|
-
# Add to Claude Code
|
|
34
|
-
claude mcp add --scope user mindcache -- npx @augmnt-sh/mindcache
|
|
33
|
+
# Add to Claude Code (auto-updates on each session)
|
|
34
|
+
claude mcp add --scope user mindcache -- npx @augmnt-sh/mindcache@latest
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
That's it. Claude Code now has access to your vault.
|
|
38
38
|
|
|
39
|
+
### Updating
|
|
40
|
+
|
|
41
|
+
If you used `@latest` in the MCP command (recommended), updates are automatic — `npx` fetches the newest version each time Claude Code starts a new session.
|
|
42
|
+
|
|
43
|
+
If you installed globally:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm update -g @augmnt-sh/mindcache
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Check your current version:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npx @augmnt-sh/mindcache --version
|
|
53
|
+
```
|
|
54
|
+
|
|
39
55
|
### Manual Configuration
|
|
40
56
|
|
|
41
57
|
Create `~/.config/mindcache/config.yml`:
|