{
  "version": 1,
  "hooks": {
    "sessionStart": [
      {
        "type": "command",
        "bash": "node .github/hooks/session-start.mjs",
        "powershell": "node .github/hooks/session-start.mjs",
        "timeoutSec": 5
      }
    ],
    "preToolUse": [
      {
        "type": "command",
        "matcher": "view|grep|glob|edit|create|bash",
        "bash": "node .github/hooks/pre-tool.mjs",
        "powershell": "node .github/hooks/pre-tool.mjs",
        "timeoutSec": 5
      }
    ],
    "postToolUse": [
      {
        "type": "command",
        "matcher": "edit|create|bash",
        "bash": "node .github/hooks/post-tool.mjs",
        "powershell": "node .github/hooks/post-tool.mjs",
        "timeoutSec": 5
      }
    ],
    "agentStop": [
      {
        "type": "command",
        "bash": "node .github/hooks/stop.mjs",
        "powershell": "node .github/hooks/stop.mjs",
        "timeoutSec": 5
      }
    ]
  }
}
