-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopencode.json
More file actions
35 lines (35 loc) · 1.08 KB
/
opencode.json
File metadata and controls
35 lines (35 loc) · 1.08 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
{
"$schema": "https://opencode.ai/config.json",
"model": "github-copilot/claude-opus-4.6",
"agent": {
"build": {
"mode": "primary",
"model": "github-copilot/claude-opus-4.6",
"description": "Coordinator agent. Delegates work to specialized subagents and enforces user review gates between phases.",
"prompt": "{file:.opencode/prompts/build.md}"
},
"plan": {
"mode": "primary",
"model": "github-copilot/gpt-5.4",
"description": "Read-only analysis and architecture planning. Cannot modify files.",
"permission": {
"edit": "deny",
"bash": {
"*": "ask",
"git *": "allow",
"ruff *": "allow",
"pixi run *": "allow"
}
}
}
},
"instructions": [
".opencode/instructions/code-style.md",
".opencode/instructions/architecture.md",
".opencode/instructions/environment.md",
".opencode/instructions/testing.md",
".opencode/instructions/analysis-module.md",
".opencode/instructions/documentation.md",
".opencode/instructions/known-issues.md"
]
}