-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathsettings.json
More file actions
63 lines (62 loc) · 1.67 KB
/
settings.json
File metadata and controls
63 lines (62 loc) · 1.67 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
{
"model": "opusplan",
"env": {
"ANTHROPIC_BASE_URL": "http://localhost:4000",
"ANTHROPIC_AUTH_TOKEN": "sk-dummy",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "claude-opus-4.6",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "claude-sonnet-4.6",
"CLAUDE_CODE_SUBAGENT_MODEL": "claude-sonnet-4.6",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "gpt-5-mini",
"DISABLE_NON_ESSENTIAL_MODEL_CALLS": "1",
"DISABLE_TELEMETRY": "1",
"CLAUDE_CODE_NO_FLICKER": "1",
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1",
"CLAUDE_CODE_ATTRIBUTION_HEADER": "0"
},
"alwaysThinkingEnabled": true,
"attribution": {
"commit": "",
"pr": ""
},
"permissions": {
"allow": [
"Skill(codex-skill)",
"Skill(claude-code-settings:codex-skill)",
"Skill(nanobanana-skill)",
"Skill(claude-code-settings:nanobanana-skill)",
"Skill(youtube-transcribe-skill)",
"Skill(claude-code-settings:youtube-transcribe-skill)",
"Skill(autonomous-skill)",
"Skill(claude-code-settings:autonomous-skill)",
"Bash(codex:*)"
],
"deny": [
"Bash(rm -rf:*)",
"Bash(rm -fr:*)",
"Read(.env)",
"Read(.env.*)",
"Read(**/.env)",
"Read(**/.env.*)",
"Read(~/.ssh/**)",
"Read(~/.aws/**)",
"Read(**/*credential*)",
"Read(**/*secret*)",
"Read(**/*.pem)",
"Read(**/*.key)"
],
"ask": [
"Bash(sudo:*)",
"Bash(chmod 777:*)",
"Bash(git push --force:*)",
"Bash(git push -f:*)",
"Bash(git reset --hard:*)",
"Bash(git clean -fd:*)",
"Bash(npm publish:*)",
"Bash(eval:*)"
]
},
"statusLine": {
"type": "command",
"command": "~/.claude/status-line.sh"
}
}