-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
34 lines (34 loc) · 1011 Bytes
/
Copy pathopencode.json
File metadata and controls
34 lines (34 loc) · 1011 Bytes
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
{
"$schema": "https://opencode.ai/config.json",
"agents": {
"planner": {
"model": "openai/gpt-5.6-sol#max"
},
"architect": {
"model": "openai/gpt-5.6-sol#max"
},
"test-writer": {
"model": "openai/gpt-5.6-sol#high"
},
"docs-writer": {
"model": "openai/gpt-5.6-sol#high"
},
"code-reviewer": {
"model": "9router/gemini-frontend"
},
"security-reviewer": {
"model": "9router/gemini-frontend"
},
"debugger": {
"model": "9router/gemini-frontend"
}
},
"permissions": [
{ "action": "shell", "resource": "npm run build*", "effect": "ask" },
{ "action": "shell", "resource": "npx tsc*", "effect": "ask" },
{ "action": "shell", "resource": "npx vite build*", "effect": "ask" },
{ "action": "shell", "resource": "npm run lint*", "effect": "allow" },
{ "action": "shell", "resource": "npm test*", "effect": "allow" },
{ "action": "shell", "resource": "npm run release*", "effect": "ask" }
]
}