-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json.temp
More file actions
53 lines (53 loc) · 1.17 KB
/
Copy pathsettings.json.temp
File metadata and controls
53 lines (53 loc) · 1.17 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
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"env": {
"ANTHROPIC_AUTH_TOKEN": "replace-with-your-auth-token",
"ANTHROPIC_BASE_URL": "https://your-anthropic-compatible-endpoint.example.com",
"ANTHROPIC_MODEL": "replace-with-your-main-model",
"CLAUDE_CODE_SUBAGENT_MODEL": "replace-with-your-subagent-model"
},
"permissions": {
"defaultMode": "acceptEdits",
"allow": [
"Read",
"Write",
"Edit",
"Glob",
"Grep",
"TodoWrite",
"Skill",
"Skill(*)",
"Bash(*)",
"Glob(//tmp/**)",
"Grep(//tmp/**)",
"Read(//tmp/**)",
"Write(//tmp/**)",
"Edit(//tmp/**)",
"Agent",
"SendMessage"
],
"deny": [
"TeamCreate",
"RemoteTrigger",
"CronCreate",
"CronDelete",
"CronList",
"EnterWorktree",
"ExitWorktree",
"WebSearch",
"WebFetch",
"NotebookEdit",
"AskUserQuestion",
"EnterPlanMode",
"ExitPlanMode",
"Bash(rm *)",
"Bash(rm)",
"Bash(rmdir *)",
"Bash(rmdir)",
"Bash(chmod *)",
"Bash(chown *)",
"Bash(su *)",
"Bash(sudo *)"
]
}
}