aboutsummaryrefslogtreecommitdiff
path: root/hooks/settings-snippet.json
blob: 50e3d3159a249fd2bf0275e6c1c180b7bdb79303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "hooks": {
    "SessionStart": [
      {
        "matcher": "startup|resume",
        "hooks": [
          { "type": "command", "command": "~/.claude/hooks/session-title.sh" }
        ]
      },
      {
        "matcher": "clear",
        "hooks": [
          { "type": "command", "command": "~/.claude/hooks/session-clear-resume.sh" }
        ]
      }
    ],
    "PreCompact": [
      {
        "hooks": [
          { "type": "command", "command": "~/.claude/hooks/precompact-priorities.sh" }
        ]
      }
    ],
    "PreToolUse": [
      {
        "matcher": "Edit|Write",
        "hooks": [
          { "type": "command", "command": "~/.claude/hooks/rulesets-write-boundary.py" }
        ]
      },
      {
        "matcher": "Bash",
        "hooks": [
          { "type": "command", "command": "~/.claude/hooks/git-commit-confirm.py" },
          { "type": "command", "command": "~/.claude/hooks/gh-pr-create-confirm.py" },
          { "type": "command", "command": "~/.claude/hooks/destructive-bash-confirm.py" }
        ]
      }
    ],
    "Stop": [
      {
        "hooks": [
          { "type": "command", "command": "~/.claude/hooks/inbox-boundary-check.sh" },
          { "type": "command", "command": "~/.claude/hooks/ai-wrap-teardown.sh" }
        ]
      }
    ]
  }
}