-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathopencode.json
More file actions
54 lines (53 loc) · 1.68 KB
/
Copy pathopencode.json
File metadata and controls
54 lines (53 loc) · 1.68 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
{
"$schema": "https://opencode.ai/config.json",
"default_agent": "architecture-plan",
"agent": {
"architecture-plan": {
"mode": "primary",
"model": "opencode-go/deepseek-v4-pro",
"description": "Handles high-level system architecture, planning, and reasoning.",
"permission": {
"edit": "deny",
"bash": "deny",
"task": {
"build": "deny",
"execute": "deny",
"general": "deny"
}
}
},
"cheap-plan": {
"mode": "primary",
"model": "opencode-go/deepseek-v4-flash",
"description": "Handles high-level system architecture, planning, and reasoning. just write the plan, no execution just write the plan. anaylze the project and write the plan.",
"permission": {
"edit": "deny",
"bash": "deny",
"task": {
"build": "deny",
"execute": "deny",
"general": "deny"
}
}
},
"execute": {
"mode": "primary",
"model": "opencode-go/deepseek-v4-flash",
"description": "Standard execution agent with full tool access to write code and run commands.",
"permission": {
"edit": "allow",
"bash": "allow"
}
},
"code-reviewer": {
"mode": "subagent",
"model": "opencode-go/mimo-v2.5",
"description": "Reviews code changes for performance, security, and bugs.",
"prompt": "You are an elite code reviewer. Focus on security, optimization, and edge cases. Do not edit files.",
"permission": {
"edit": "deny",
"bash": "deny"
}
}
}
}