-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
155 lines (155 loc) · 4.49 KB
/
Copy pathopencode.json
File metadata and controls
155 lines (155 loc) · 4.49 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"$schema": "https://opencode.ai/config.json",
"instructions": [
"AGENTS.md"
],
"plugin": [
"./adapters/opencode/apex.mjs"
],
"agent": {
"arch": {
"description": "[Arch] Max the Architect — compresses/refactors code",
"file": ".opencode/agents/arch.md",
"mode": "subagent"
},
"ui": {
"description": "[UI] Zara — Full System UI/UX Designer + Frontend Engineer. Mood-first, anti-slop, 10 palettes, WCAG AA, shadcn/ui+Tailwind",
"file": ".opencode/agents/ui.md",
"mode": "subagent"
},
"debug": {
"description": "[Dbg] Kai the Debugger — 5-step debug protocol",
"file": ".opencode/agents/debug.md",
"mode": "subagent"
},
"perf": {
"description": "[Perf] Rex the Performance Engineer — profile-first",
"file": ".opencode/agents/perf.md",
"mode": "subagent"
},
"sec": {
"description": "[Sec] Vex the Security Engineer — OWASP Top 10",
"file": ".opencode/agents/sec.md",
"mode": "subagent"
},
"infra": {
"description": "[Inf] Io the Infrastructure Engineer — Docker/k8s/CI-CD",
"file": ".opencode/agents/infra.md",
"mode": "subagent"
},
"nova": {
"description": "[Nov] Nova the Creative — non-obvious angles",
"file": ".opencode/agents/nova.md",
"mode": "subagent"
},
"reed": {
"description": "[Res] Dr. Reed the Researcher — evidence-based",
"file": ".opencode/agents/reed.md",
"mode": "subagent"
},
"review": {
"description": "[Rev] Rila the Reviewer — structured PR review",
"file": ".opencode/agents/review.md",
"mode": "subagent"
},
"flex": {
"description": "[Fnd] Flex the Founder — MVP scope cutter",
"file": ".opencode/agents/flex.md",
"mode": "subagent"
}
},
"mcp": {
"apex-hands": {
"type": "local",
"command": ["node", "apex/src/hands-server.mjs"]
},
"mirage-vfs": {
"type": "local",
"command": ["node", "apex/src/mirage-server.mjs"]
},
"apex-composio": {
"type": "local",
"command": ["node", "apex/src/composio-server.mjs"]
}
},
"command": {
"apex-arch": {
"description": "[Arch] Invoke Max the Architect",
"template": "@arch ",
"agent": "arch"
},
"apex-ui": {
"description": "[UI] Invoke Zara — Full System UI/UX Designer + Frontend Engineer",
"template": "@ui ",
"agent": "ui"
},
"apex-debug": {
"description": "[Dbg] Invoke Kai the Debugger",
"template": "@debug ",
"agent": "debug"
},
"apex-perf": {
"description": "[Perf] Invoke Rex the Performance Engineer",
"template": "@perf ",
"agent": "perf"
},
"apex-sec": {
"description": "[Sec] Invoke Vex the Security Engineer",
"template": "@sec ",
"agent": "sec"
},
"apex-infra": {
"description": "[Inf] Invoke Io the Infrastructure Engineer",
"template": "@infra ",
"agent": "infra"
},
"apex-nova": {
"description": "[Nov] Invoke Nova the Creative",
"template": "@nova ",
"agent": "nova"
},
"apex-reed": {
"description": "[Res] Invoke Dr. Reed the Researcher",
"template": "@reed ",
"agent": "reed"
},
"apex-review": {
"description": "[Rev] Invoke Rila the Reviewer",
"template": "@review ",
"agent": "review"
},
"apex-flex": {
"description": "[Fnd] Invoke Flex the Founder",
"template": "@flex ",
"agent": "flex"
},
"apex-docs": {
"description": "[Docs] Create/edit Word documents via OfficeCLI",
"template": "/docs "
},
"apex-excel": {
"description": "[Excel] Create/edit Excel spreadsheets via OfficeCLI",
"template": "/excel "
},
"apex-ppt": {
"description": "[PPT] Create PowerPoint presentations via OfficeCLI",
"template": "/ppt "
},
"apex-mirage": {
"description": "[Mirage] Virtual filesystem operations across 50+ backends",
"template": "/mirage "
},
"apex-composio-setup": {
"description": "[Composio] Connect tools — paste API key, get OAuth link, done",
"template": "/composio-setup "
},
"apex-composio-status": {
"description": "[Composio] Show connected tools and API key status",
"template": "/composio-status "
},
"apex-composio-sync": {
"description": "[Composio] Force sync connected tools from Composio backend",
"template": "/composio-sync "
}
}
}