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.
- package/dist/hooks/install.js +10 -3
- package/package.json +1 -1
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',
|