-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathcopilot-settings.json
More file actions
47 lines (47 loc) · 1.31 KB
/
copilot-settings.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"env": {
"ANTHROPIC_BASE_URL": "http://localhost:4141",
"ANTHROPIC_AUTH_TOKEN": "sk-dummy",
"ANTHROPIC_MODEL": "opusplan",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "claude-sonnet-4.5",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "claude-opus-4",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "gpt-5-mini",
"DISABLE_NON_ESSENTIAL_MODEL_CALLS": "1",
"DISABLE_TELEMETRY": "1",
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1",
"CLAUDE_CODE_ATTRIBUTION_HEADER": "0"
},
"alwaysThinkingEnabled": true,
"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": []
},
"statusLine": {
"type": "command",
"command": "~/.claude/status-line.sh"
}
}