-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneric_settings.json
More file actions
68 lines (68 loc) · 1.62 KB
/
Copy pathgeneric_settings.json
File metadata and controls
68 lines (68 loc) · 1.62 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1",
"ENABLE_LSP_TOOL": "1",
"CLAUDE_CODE_DISABLE_GIT_INSTRUCTIONS": "1",
"CLAUDE_CODE_NO_FLICKER": "1"
},
"permissions": {
"deny": [
"Bash(make:*)",
"Bash(make)",
"Bash(gmake:*)",
"Bash(gmake)",
"Bash(aws *--profile *admin*)",
"Bash(aws *--profile=*admin*)",
"Bash(AWS_PROFILE=*admin* *)",
"Bash(AWS_DEFAULT_PROFILE=*admin* *)",
"Bash(*aws *admin*)"
],
"defaultMode": "plan"
},
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "$HOME/.claude/hooks/block-commands.sh"
}
]
}
],
"Notification": [
{
"matcher": "permission_prompt",
"hooks": [
{
"type": "command",
"command": "[ -n \"$TMUX_PANE\" ] && printf '\\a' > \"$(tmux display-message -p -t \"$TMUX_PANE\" '#{pane_tty}' 2>/dev/null)\" 2>/dev/null || true",
"timeout": 1
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "[ -n \"$TMUX_PANE\" ] && printf '\\a' > \"$(tmux display-message -p -t \"$TMUX_PANE\" '#{pane_tty}' 2>/dev/null)\" 2>/dev/null || true",
"timeout": 1
}
]
}
]
},
"statusLine": {
"type": "command",
"command": "cship",
"padding": 0
},
"model": "claude-opus-4-8",
"skipDangerousModePermissionPrompt": true,
"editorMode": "vim",
"teammateMode": "auto",
"remoteControlAtStartup": false
}