-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
46 lines (46 loc) · 1.46 KB
/
Copy pathopencode.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"$schema": "https://opencode.ai/config.json",
"command": {
"nx-plan": { "agent": "plan", "description": "Decompose task into tiered, self-contained steps" },
"nx-build": { "description": "Execute a nexum plan via cheapest capable tiers" },
"nx-save": { "description": "Write session handoff for clean resume" },
"nx-load": { "description": "Resume from most recent session handoff" },
"nx-audit": { "description": "Audit repo for context-risk files" },
"nx-report": { "description": "Show session digest: cost + wasted-context analysis" },
"nx-status": { "description": "Show nexum session stats" }
},
"agent": {
"nexum-mechanical": {
"mode": "subagent",
"description": "Executor for mechanical/boilerplate nexum steps",
"permission": {
"edit": "allow",
"bash": "allow"
}
},
"nexum-standard": {
"mode": "subagent",
"description": "Executor for standard nexum steps",
"permission": {
"edit": "allow",
"bash": "allow"
}
},
"nexum-needs-strong": {
"mode": "subagent",
"description": "Executor for complex nexum steps (architecture, ambiguity, debugging)",
"permission": {
"edit": "allow",
"bash": "allow"
}
},
"nexum-reviewer": {
"mode": "subagent",
"description": "Reviews escalated nexum step implementations",
"permission": {
"edit": "deny",
"bash": "allow"
}
}
}
}