claude-session-continuity-mcp 1.6.2 → 1.6.4
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 +4 -2
- package/dist/hooks/install.js +10 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# claude-session-continuity-mcp (v1.6.
|
|
1
|
+
# claude-session-continuity-mcp (v1.6.4)
|
|
2
2
|
|
|
3
3
|
> **Zero Re-explanation Session Continuity for Claude Code** — Automatic context capture + semantic search
|
|
4
4
|
|
|
@@ -86,7 +86,7 @@ npm install claude-session-continuity-mcp
|
|
|
86
86
|
"hooks": {
|
|
87
87
|
"SessionStart": [{ "hooks": [{ "type": "command", "command": "npm exec -- claude-hook-session-start" }] }],
|
|
88
88
|
"UserPromptSubmit": [{ "hooks": [{ "type": "command", "command": "npm exec -- claude-hook-user-prompt" }] }],
|
|
89
|
-
"PostToolUse": [{ "matcher": { "
|
|
89
|
+
"PostToolUse": [{ "matcher": "Edit", "hooks": [{ "type": "command", "command": "npm exec -- claude-hook-post-tool" }] }, { "matcher": "Write", "hooks": [{ "type": "command", "command": "npm exec -- claude-hook-post-tool" }] }],
|
|
90
90
|
"PreCompact": [{ "hooks": [{ "type": "command", "command": "npm exec -- claude-hook-pre-compact" }] }],
|
|
91
91
|
"Stop": [{ "hooks": [{ "type": "command", "command": "npm exec -- claude-hook-session-end" }] }]
|
|
92
92
|
}
|
|
@@ -453,6 +453,8 @@ npm run test:coverage
|
|
|
453
453
|
- [x] Solution semantic search (v1.6.0)
|
|
454
454
|
- [x] Fix hooks settings file path (v1.6.1 - settings.json, not settings.local.json)
|
|
455
455
|
- [x] Auto-migrate legacy hooks (v1.6.1)
|
|
456
|
+
- [x] Fix PostToolUse matcher format to string (v1.6.3)
|
|
457
|
+
- [x] Fix README documentation for new hook format (v1.6.4)
|
|
456
458
|
- [ ] sqlite-vec native vector search (v2 - when data > 1000 records)
|
|
457
459
|
- [ ] Web dashboard
|
|
458
460
|
- [ ] Cloud sync option
|
package/dist/hooks/install.js
CHANGED
|
@@ -161,9 +161,16 @@ function install() {
|
|
|
161
161
|
// PostToolUse Hook - 파일 변경 시 자동 기록 (Edit, Write)
|
|
162
162
|
hooks.PostToolUse = [
|
|
163
163
|
{
|
|
164
|
-
matcher:
|
|
165
|
-
|
|
166
|
-
|
|
164
|
+
matcher: 'Edit',
|
|
165
|
+
hooks: [
|
|
166
|
+
{
|
|
167
|
+
type: 'command',
|
|
168
|
+
command: 'npm exec -- claude-hook-post-tool'
|
|
169
|
+
}
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
matcher: 'Write',
|
|
167
174
|
hooks: [
|
|
168
175
|
{
|
|
169
176
|
type: 'command',
|