Files

46 lines
974 B
JSON

{
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/forced-eval.mjs"],
"timeout": 2
}
]
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/hooks/session-start.mjs"],
"timeout": 3
}
]
},
{
"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
}
]
}
]
}
}