Files
kochetkov-ma__claude-brewcode/brewcode/hooks/hooks.json
T

46 lines
974 B
JSON
Raw Normal View History

2026-01-27 10:38:34 +00:00
{
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/forced-eval.mjs"],
"timeout": 2
2026-01-27 10:38:34 +00:00
}
]
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/session-start.mjs"],
"timeout": 3
2026-01-27 10:38:34 +00:00
}
]
},
{
"matcher": "compact",
"hooks": [
{
"type": "command",
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/role-recall.mjs"],
"timeout": 2
},
{
"type": "command",
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/compact-recall.mjs"],
"timeout": 2
}
]
}
2026-01-27 10:38:34 +00:00
]
}
}