Files
2025-11-29 18:08:52 +08:00

40 lines
838 B
JSON

{
"description": "Automatically trigger plan and implementation reviews at appropriate times",
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}\"/hooks/user_prompt_submit.sh",
"timeout": 10
}
]
}
],
"PreToolUse": [
{
"matcher": "ExitPlanMode",
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}\"/hooks/pre_exit_plan_mode.sh",
"timeout": 10
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}\"/hooks/on_stop.sh",
"timeout": 30
}
]
}
]
}
}