-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathopencode.json.example
More file actions
52 lines (52 loc) · 1.65 KB
/
Copy pathopencode.json.example
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"$schema": "https://opencode.ai/config.json",
"model": "zen/claude-opus-4-5",
"default_agent": "oscar",
"keybinds": {
"f9": "agent:prev",
"f10": "agent:next"
},
"agent": {
"oscar": {
"description": "Orchestrator - coordinates, delegates, synthesizes",
"mode": "primary",
"prompt": "{file:~/.config/opencode/agent/oscar.md}"
},
"scout": {
"description": "Researcher + Planner - deep analysis, actionable plans",
"mode": "subagent",
"prompt": "{file:~/.config/opencode/agent/scout.md}"
},
"ivan": {
"description": "Implementor - writes code, runs tests, git operations",
"mode": "subagent",
"prompt": "{file:~/.config/opencode/agent/ivan.md}"
},
"jester": {
"description": "Truth-Teller (default) - challenges assumptions",
"mode": "subagent",
"model": "zen/claude-opus-4-5",
"prompt": "{file:~/.config/opencode/agent/jester.md}"
},
"jester_opus": {
"description": "Jester (Opus) - Truth-teller using Claude Opus",
"mode": "subagent",
"model": "zen/claude-opus-4-5",
"prompt": "{file:~/.config/opencode/agent/jester.md}"
},
"jester_qwen": {
"description": "Jester (Qwen) - Truth-teller using Qwen3 Coder",
"mode": "subagent",
"model": "zen/qwen3-coder-480b",
"prompt": "{file:~/.config/opencode/agent/jester.md}"
},
"jester_grok": {
"description": "Jester (Grok) - Truth-teller using Grok",
"mode": "subagent",
"model": "zen/grok-3",
"prompt": "{file:~/.config/opencode/agent/jester.md}"
},
"plan": { "disable": true },
"build": { "disable": true }
}
}