{ "description": "Buddymon lifecycle hooks — session init, encounter detection, XP tally", "hooks": { "SessionStart": [ { "hooks": [ { "type": "command", "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks-handlers/session-start.sh\"", "timeout": 10 } ] } ], "PostToolUse": [ { "matcher": "Bash|Edit|Write|MultiEdit", "hooks": [ { "type": "command", "command": "python3 \"${CLAUDE_PLUGIN_ROOT}/hooks-handlers/post-tool-use.py\"", "timeout": 10 } ] } ], "Stop": [ { "hooks": [ { "type": "command", "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks-handlers/session-stop.sh\"", "timeout": 10 } ] } ] } }