forked from joelparkerhenderson/decision-record
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
70 lines (70 loc) · 2.17 KB
/
opencode.json
File metadata and controls
70 lines (70 loc) · 2.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "https://opencode.ai/config.json",
"default_agent": "dr-wizard",
"mcp": {
"decision-record": {
"type": "local",
"command": ["node", "${workspaceRoot}/server/dist/index.js"],
"environment": {
"DR_LOG_LEVEL": "info"
}
}
},
"agent": {
"dr-wizard": {
"description": "Orchestrator for the decision-record planning pipeline. Reads current pipeline state and drives the next phase forward — intake, scope, decisions, tasks, handoff.",
"mode": "primary",
"model": "anthropic/claude-sonnet-4-20250514",
"color": "#8B5CF6",
"permission": {
"read": "allow",
"edit": "allow",
"bash": "allow",
"glob": "allow",
"grep": "allow",
"list": "allow",
"task": "allow",
"todowrite": "allow",
"decision-record_*": "allow"
}
},
"dr-skeptic": {
"description": "Antagonistic reviewer for decision records. Returns a verdict (pass/block) and concerns from multiple lenses.",
"mode": "subagent",
"model": "anthropic/claude-sonnet-4-20250514",
"color": "#EF4444",
"permission": {
"read": "allow",
"glob": "allow",
"grep": "allow",
"webfetch": "allow",
"edit": "deny",
"bash": "deny",
"decision-record_*": "allow"
}
},
"dr-decomposer": {
"description": "Task graph decomposer. Converts accepted decisions into a dependency-aware task graph with estimates and acceptance criteria.",
"mode": "subagent",
"model": "anthropic/claude-sonnet-4-20250514",
"color": "#3B82F6",
"permission": {
"read": "allow",
"edit": "allow",
"bash": "allow",
"glob": "allow",
"grep": "allow",
"list": "allow",
"todowrite": "allow",
"decision-record_*": "allow"
}
}
},
"command": {
"plan": {
"template": "Drive the project through the hard-gated decision-record planning pipeline: intake → scope → decisions → task graph → handoff. $ARGUMENTS",
"description": "Run the idea-to-MVP planning pipeline with hard-gated phases",
"agent": "dr-wizard"
}
}
}