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
|
{
"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" }
]
}
]
}
}
|