mirror of
https://github.com/kochetkov-ma/claude-brewcode.git
synced 2026-09-14 20:16:41 +08:00
v3.8.0: skillOverrides migration + grepai alwaysLoad + teardown --full + hooks.json exec form
This commit is contained in:
@@ -5,7 +5,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/forced-eval.mjs\"",
|
||||
"command": "node",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/forced-eval.mjs"],
|
||||
"timeout": 1000
|
||||
}
|
||||
]
|
||||
@@ -16,7 +17,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/session-start.mjs\"",
|
||||
"command": "node",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/session-start.mjs"],
|
||||
"timeout": 3000
|
||||
}
|
||||
]
|
||||
@@ -25,7 +27,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/grepai-session.mjs\"",
|
||||
"command": "node",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/grepai-session.mjs"],
|
||||
"timeout": 5000
|
||||
}
|
||||
]
|
||||
@@ -37,7 +40,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/pre-task.mjs\"",
|
||||
"command": "node",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/pre-task.mjs"],
|
||||
"timeout": 5000
|
||||
}
|
||||
]
|
||||
@@ -47,7 +51,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/grepai-reminder.mjs\"",
|
||||
"command": "node",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/grepai-reminder.mjs"],
|
||||
"timeout": 1000
|
||||
}
|
||||
]
|
||||
@@ -59,7 +64,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/post-task.mjs\"",
|
||||
"command": "node",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/post-task.mjs"],
|
||||
"timeout": 5000
|
||||
}
|
||||
]
|
||||
@@ -70,7 +76,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/pre-compact.mjs\"",
|
||||
"command": "node",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/pre-compact.mjs"],
|
||||
"timeout": 60000
|
||||
}
|
||||
]
|
||||
@@ -82,7 +89,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/permission-guard.sh\"",
|
||||
"command": "bash",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/permission-guard.sh"],
|
||||
"timeout": 1000
|
||||
}
|
||||
]
|
||||
@@ -93,7 +101,8 @@
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/stop.mjs\"",
|
||||
"command": "node",
|
||||
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/stop.mjs"],
|
||||
"timeout": 5000
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user