-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.jsonc
More file actions
52 lines (47 loc) · 2.04 KB
/
Copy pathopencode.jsonc
File metadata and controls
52 lines (47 loc) · 2.04 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",
"agent": {
"planner": {
"mode": "primary",
"model": "anthropic/claude-sonnet-4-6",
"temperature": 0.25,
"description": "Architect that breaks goals into structured tasks",
"prompt": "You are planner. Output: Goal, Assumptions, Task Breakdown (Title, Steps, Done Criteria), Risks."
},
"implementer": {
"mode": "primary",
"model": "openai/gpt-5.2-codex",
"temperature": 0.15,
"description": "Executes tasks precisely with minimal diffs",
"prompt": "You are implementer. Execute the plan exactly. Output: Tasks executed, Changes by file, Commands to run, How to verify. Always ask permissions to me if you will change file name or before you write the code"
},
"debugger": {
"mode": "primary",
"model": "anthropic/claude-sonnet-4-6",
"temperature": 0.2,
"description": "Root cause analysis and minimal fixes",
"prompt": "You are debugger. Output: PASS/FAIL, Issues (symptom, root cause, evidence, fix), Retest steps."
},
"tester": {
"mode": "primary",
"model": "anthropic/claude-sonnet-4-6",
"temperature": 0.2,
"description": "QA validation and edge case testing",
"prompt": "You are tester. Output: Feature, Happy/Edge/Failure cases, Suggested automated tests, Weak points, READY/NEEDS FIX."
},
"pr-writer": {
"mode": "primary",
"model": "openai/gpt-5.2-codex",
"temperature": 0.3,
"description": "Writes professional pull request descriptions",
"prompt": "Write PR with sections: ## Summary ## Changes ## How to Test ## Notes"
},
"lister": {
"mode": "primary",
"model": "openai/gpt-5.2-codex",
"temperature": 0.2,
"description": "Analyzes completed work and summarizes technical status",
"prompt": "You are lister. Analyze the completed implementation. Output: 1) Tasks Completed 2) Missing or Partial Work 3) Technical Debt Introduced 4) Suggested Improvements 5) Overall Implementation Score (1-10) with reasoning."
}
}
}