Skip to content

Commit b22c249

Browse files
committed
faster session start, search robust, clean up
1 parent 7be7915 commit b22c249

21 files changed

Lines changed: 271 additions & 68 deletions

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"name": "mind",
1111
"description": "Claude Brain - Give Claude photographic memory in ONE portable file",
12-
"version": "1.0.7",
12+
"version": "1.0.8",
1313
"source": "./"
1414
}
1515
]

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mind",
33
"description": "Claude Mind - Give Claude photographic memory in ONE portable file. Share, version, and transfer your Claude's brain.",
4-
"version": "1.0.7",
4+
"version": "1.0.8",
55
"author": {
66
"name": "Memvid",
77
"url": "https://memvid.com"

.install-version

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"version": "1.0.7",
3+
"installedAt": "2026-01-06T00:00:21.000Z"
4+
}

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ That's it. No database. No cloud. No API keys.
8383

8484
## Commands
8585

86+
**In Claude Code:**
8687
```bash
8788
/mind:mind search "auth bug" # find past context
8889
/mind:mind ask "why JWT?" # query memory
@@ -92,6 +93,25 @@ That's it. No database. No cloud. No API keys.
9293

9394
<br />
9495

96+
## CLI (Optional)
97+
98+
For power users who want direct access to their memory file:
99+
100+
```bash
101+
npm install -g memvid-cli
102+
```
103+
104+
```bash
105+
memvid stats .claude/mind.mv2 # view memory stats
106+
memvid find .claude/mind.mv2 "auth" # search memories
107+
memvid ask .claude/mind.mv2 "why JWT?" # ask questions
108+
memvid timeline .claude/mind.mv2 # view timeline
109+
```
110+
111+
[Full CLI reference →](https://docs.memvid.com/cli/cheat-sheet)
112+
113+
<br />
114+
95115
## FAQ
96116

97117
<details>

dist/hooks/hooks.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
{
88
"type": "command",
99
"command": "node \"${CLAUDE_PLUGIN_ROOT}/dist/hooks/smart-install.js\"",
10-
"timeout": 120
10+
"timeout": 30
1111
},
1212
{
1313
"type": "command",
1414
"command": "node \"${CLAUDE_PLUGIN_ROOT}/dist/hooks/session-start.js\"",
15-
"timeout": 15
15+
"timeout": 5
1616
}
1717
]
1818
}
@@ -24,7 +24,7 @@
2424
{
2525
"type": "command",
2626
"command": "node \"${CLAUDE_PLUGIN_ROOT}/dist/hooks/post-tool-use.js\"",
27-
"timeout": 120
27+
"timeout": 10
2828
}
2929
]
3030
}
@@ -35,7 +35,7 @@
3535
{
3636
"type": "command",
3737
"command": "node \"${CLAUDE_PLUGIN_ROOT}/dist/hooks/stop.js\"",
38-
"timeout": 30
38+
"timeout": 10
3939
}
4040
]
4141
}

dist/hooks/post-tool-use.js

Lines changed: 44 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/hooks/post-tool-use.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/hooks/session-start.js

Lines changed: 44 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/hooks/session-start.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/hooks/smart-install.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)