{ "description": "Worktree task hooks for alerts and update checking", "hooks": { "SessionStart": [ { "matcher": "startup|resume", "hooks": [ { "type": "command", "command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/handlers/on-session-start.py", "timeout": 15 } ] } ], "Stop": [ { "hooks": [ { "type": "command", "command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/handlers/on-stop.py" } ] } ], "SessionEnd": [ { "hooks": [ { "type": "command", "command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/handlers/on-session-end.py" } ] } ] } }