Files
everything-claude-code/.kiro/hooks/README.md
Himanshu Sharma bacc585b87 Add Kiro steering files, hooks, and scripts (#812)
Co-authored-by: Sungmin Hong <hsungmin@amazon.com>
2026-03-22 21:55:47 -07:00

2.2 KiB

Hooks in Kiro

Kiro supports two types of hooks:

  1. IDE Hooks (this directory) - Standalone .kiro.hook files that work in the Kiro IDE
  2. CLI Hooks - Embedded in agent configuration files for CLI usage

IDE Hooks (Standalone Files)

IDE hooks are .kiro.hook files in .kiro/hooks/ that appear in the Agent Hooks panel in the Kiro IDE.

Format

{
  "version": "1.0.0",
  "enabled": true,
  "name": "hook-name",
  "description": "What this hook does",
  "when": {
    "type": "fileEdited",
    "patterns": ["*.ts", "*.tsx"]
  },
  "then": {
    "type": "runCommand",
    "command": "npx tsc --noEmit",
    "timeout": 30
  }
}

Required Fields

  • version - Hook version (e.g., "1.0.0")
  • enabled - Whether the hook is active (true/false)
  • name - Hook identifier (kebab-case)
  • description - Human-readable description
  • when - Trigger configuration
  • then - Action to perform

Available Trigger Types

  • fileEdited - When a file matching patterns is edited
  • fileCreated - When a file matching patterns is created
  • fileDeleted - When a file matching patterns is deleted
  • userTriggered - Manual trigger from Agent Hooks panel
  • promptSubmit - When user submits a prompt
  • agentStop - When agent finishes responding
  • preToolUse - Before a tool is executed (requires toolTypes)
  • postToolUse - After a tool is executed (requires toolTypes)

Action Types

  • runCommand - Execute a shell command
    • Optional timeout field (in seconds)
  • askAgent - Send a prompt to the agent

Environment Variables

When hooks run, these environment variables are available:

  • $KIRO_HOOK_FILE - Path to the file that triggered the hook (for file events)

CLI Hooks (Embedded in Agents)

CLI hooks are embedded in agent configuration files (.kiro/agents/*.json) for use with kiro-cli.

Format

{
  "name": "my-agent",
  "hooks": {
    "agentSpawn": [
      {
        "command": "git status"
      }
    ],
    "postToolUse": [
      {
        "matcher": "fs_write",
        "command": "npx tsc --noEmit"
      }
    ]
  }
}

See .kiro/agents/tdd-guide-with-hooks.json for a complete example.

Documentation