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
|
{
"model": "sonnet",
"permissions": {
"defaultMode": "acceptEdits",
"disableBypassPermissionsMode": "disable",
"allow": [
"Bash(fd:*)",
"Bash(find:*)",
"Bash(git diff:*)",
"Bash(git fetch:*)",
"Bash(git log:*)",
"Bash(git status:*)",
"Bash(grep:*)",
"Bash(ls:*)",
"Bash(mkdir:*)",
"Bash(rg:*)",
"Bash(touch:*)",
"Bash(tree:*)"
],
"deny": [
"Bash(git push:*)"
]
},
"hooks": {
"Notification": [
{
"hooks": [
{
"type": "command",
"command": "__claude-code-notify Notification"
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "__claude-code-notify Stop"
}
]
}
]
}
}
|