aboutsummaryrefslogtreecommitdiff
path: root/hooks/settings-snippet.json
blob: 0f0e784bc48e125ec1024e7b3b8beab5a6be6b9b (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
{
  "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": "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/ai-wrap-teardown.sh" }
        ]
      }
    ]
  }
}