claude-session-continuity-mcp 1.6.2 → 1.6.3

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.
@@ -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.3",
4
4
  "description": "Session Continuity for Claude Code - Never re-explain your project again",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",