{
  "version": 1,
  "hooks": {
    "sessionStart": [
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/LoadContext.ts --agent=cursor"
      }
    ],
    "beforeSubmitPrompt": [
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/UserPromptOrchestrator.ts --agent=cursor"
      }
    ],
    "preToolUse": [
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/SecurityValidator.ts --agent=cursor"
      },
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/SkillGuard.ts --agent=cursor"
      },
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/RtkWrap.ts --agent=cursor"
      },
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/LedgerSnapshot.ts --agent=cursor"
      }
    ],
    "postToolUse": [
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/LedgerCommit.ts --agent=cursor"
      }
    ],
    "postToolUseFailure": [
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/LedgerUnapplied.ts --agent=cursor"
      }
    ],
    "beforeShellExecution": [
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/SecurityValidator.ts --agent=cursor"
      }
    ],
    "stop": [
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/StopOrchestrator.ts --agent=cursor"
      }
    ],
    "sessionEnd": [
      {
        "type": "command",
        "command": "bun run {{PKG_ROOT}}/src/hooks/SessionClose.ts --agent=cursor"
      }
    ]
  }
}
