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 CHANGED
@@ -1,4 +1,4 @@
1
- # claude-session-continuity-mcp (v1.6.2)
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": { "tool_name": "Edit|Write" }, "hooks": [{ "type": "command", "command": "npm exec -- claude-hook-post-tool" }] }],
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
@@ -161,9 +161,16 @@ function install() {
161
161
  // PostToolUse Hook - 파일 변경 시 자동 기록 (Edit, Write)
162
162
  hooks.PostToolUse = [
163
163
  {
164
- matcher: {
165
- tool_name: 'Edit|Write'
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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-session-continuity-mcp",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "Session Continuity for Claude Code - Never re-explain your project again",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",