@polderlabs/bizar 3.5.4 → 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/audit.mjs +3 -5
- package/cli/banner.mjs +1 -1
- package/cli/bin.mjs +165 -70
- package/cli/copy.mjs +23 -6
- package/cli/export.mjs +15 -7
- package/cli/init.mjs +25 -17
- package/cli/install.mjs +6 -5
- package/cli/plan.mjs +62 -35
- package/cli/prompts.mjs +10 -5
- package/cli/service.mjs +32 -9
- package/cli/update.mjs +18 -2
- package/cli/utils.mjs +28 -29
- package/config/AGENTS.md +100 -0
- package/config/agents/baldr.md +57 -1
- package/config/agents/forseti.md +56 -0
- package/config/agents/frigg.md +55 -1
- package/config/agents/heimdall.md +57 -1
- package/config/agents/hermod.md +56 -0
- package/config/agents/mimir.md +57 -1
- package/config/agents/odin.md +58 -0
- package/config/agents/quick.md +56 -0
- package/config/agents/semble-search.md +59 -0
- package/config/agents/thor.md +56 -0
- package/config/agents/tyr.md +56 -0
- package/config/agents/vidarr.md +56 -0
- package/config/agents/vor.md +55 -1
- package/config/opencode.json +52 -24
- package/config/opencode.json.template +310 -0
- package/package.json +3 -18
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/config.json",
|
|
3
|
+
"model": "minimax/MiniMax-M3",
|
|
4
|
+
"small_model": "minimax/MiniMax-M2.7",
|
|
5
|
+
"default_agent": "odin",
|
|
6
|
+
"permission": "allow",
|
|
7
|
+
"snapshot": false,
|
|
8
|
+
"mcp": {
|
|
9
|
+
"supabase": {
|
|
10
|
+
"type": "remote",
|
|
11
|
+
"url": "https://mcp.supabase.com/mcp",
|
|
12
|
+
"enabled": false
|
|
13
|
+
},
|
|
14
|
+
"hindsight": {
|
|
15
|
+
"type": "remote",
|
|
16
|
+
"url": "https://memory-api.polderlabs.io/mcp",
|
|
17
|
+
"enabled": false,
|
|
18
|
+
"oauth": false,
|
|
19
|
+
"headers": {
|
|
20
|
+
"Authorization": "Bearer __HINDSIGHT_BEARER_TOKEN__",
|
|
21
|
+
"Content-Type": "application/json"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"semble": {
|
|
25
|
+
"type": "local",
|
|
26
|
+
"command": [
|
|
27
|
+
"uvx",
|
|
28
|
+
"--from",
|
|
29
|
+
"semble[mcp]",
|
|
30
|
+
"semble"
|
|
31
|
+
],
|
|
32
|
+
"enabled": true
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"plugin": [
|
|
36
|
+
["./plugins/bizar/index.ts", {
|
|
37
|
+
"loopThresholdWarn": 5,
|
|
38
|
+
"loopThresholdEscalate": 8,
|
|
39
|
+
"loopThresholdBlock": 12,
|
|
40
|
+
"loopWindowSize": 10
|
|
41
|
+
}]
|
|
42
|
+
],
|
|
43
|
+
"tools": {
|
|
44
|
+
"bizar_plan_action": true,
|
|
45
|
+
"bizar_get_plan_comments": true,
|
|
46
|
+
"bizar_wait_for_feedback": true,
|
|
47
|
+
"bizar_spawn_background": true,
|
|
48
|
+
"bizar_status": true,
|
|
49
|
+
"bizar_collect": true,
|
|
50
|
+
"bizar_kill": true
|
|
51
|
+
},
|
|
52
|
+
"agent": {
|
|
53
|
+
"odin": {
|
|
54
|
+
"description": "Odin — Pure router that delegates all work to subagents.",
|
|
55
|
+
"mode": "primary",
|
|
56
|
+
"model": "minimax/MiniMax-M3",
|
|
57
|
+
"color": "#6366f1",
|
|
58
|
+
"permission": {
|
|
59
|
+
"task": "allow",
|
|
60
|
+
"read": "allow",
|
|
61
|
+
"list": "allow",
|
|
62
|
+
"todowrite": "allow",
|
|
63
|
+
"webfetch": "allow",
|
|
64
|
+
"websearch": "allow"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"vor": {
|
|
68
|
+
"description": "Vör — The Questioning One.",
|
|
69
|
+
"mode": "subagent",
|
|
70
|
+
"model": "minimax/MiniMax-M2.7",
|
|
71
|
+
"color": "#8b5cf6",
|
|
72
|
+
"permission": {
|
|
73
|
+
"read": "allow",
|
|
74
|
+
"list": "allow",
|
|
75
|
+
"question": "allow",
|
|
76
|
+
"hindsight_recall": "allow",
|
|
77
|
+
"hindsight_retain": "allow"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"frigg": {
|
|
81
|
+
"description": "Frigg — All-knowing Q&A agent.",
|
|
82
|
+
"mode": "primary",
|
|
83
|
+
"model": "minimax/MiniMax-M2.7",
|
|
84
|
+
"color": "#06b6d4",
|
|
85
|
+
"permission": {
|
|
86
|
+
"read": "allow",
|
|
87
|
+
"list": "allow",
|
|
88
|
+
"glob": "allow",
|
|
89
|
+
"grep": "allow",
|
|
90
|
+
"bash": "allow",
|
|
91
|
+
"webfetch": "allow",
|
|
92
|
+
"websearch": "allow",
|
|
93
|
+
"hindsight_recall": "allow",
|
|
94
|
+
"hindsight_retain": "allow",
|
|
95
|
+
"question": "allow"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"quick": {
|
|
99
|
+
"description": "Quick — Fast single-shot tasks.",
|
|
100
|
+
"mode": "primary",
|
|
101
|
+
"model": "minimax/MiniMax-M2.7",
|
|
102
|
+
"color": "#22d3ee",
|
|
103
|
+
"permission": {
|
|
104
|
+
"read": "allow",
|
|
105
|
+
"edit": "allow",
|
|
106
|
+
"write": "allow",
|
|
107
|
+
"bash": "allow",
|
|
108
|
+
"glob": "allow",
|
|
109
|
+
"grep": "allow",
|
|
110
|
+
"list": "allow",
|
|
111
|
+
"todowrite": "allow",
|
|
112
|
+
"webfetch": "allow",
|
|
113
|
+
"websearch": "allow",
|
|
114
|
+
"task": "deny"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"mimir": {
|
|
118
|
+
"description": "Mimir — Research and codebase exploration agent.",
|
|
119
|
+
"mode": "subagent",
|
|
120
|
+
"model": "minimax/MiniMax-M2.7",
|
|
121
|
+
"color": "#0ea5e9",
|
|
122
|
+
"permission": {
|
|
123
|
+
"read": "allow",
|
|
124
|
+
"write": "allow",
|
|
125
|
+
"edit": "allow",
|
|
126
|
+
"bash": "allow",
|
|
127
|
+
"glob": "allow",
|
|
128
|
+
"grep": "allow",
|
|
129
|
+
"list": "allow",
|
|
130
|
+
"webfetch": "allow",
|
|
131
|
+
"websearch": "allow",
|
|
132
|
+
"todowrite": "allow"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"heimdall": {
|
|
136
|
+
"description": "Heimdall — Simple, routine, deterministic tasks.",
|
|
137
|
+
"mode": "subagent",
|
|
138
|
+
"model": "minimax/MiniMax-M2.7",
|
|
139
|
+
"color": "#10b981",
|
|
140
|
+
"permission": {
|
|
141
|
+
"read": "allow",
|
|
142
|
+
"edit": "allow",
|
|
143
|
+
"bash": "allow",
|
|
144
|
+
"glob": "allow",
|
|
145
|
+
"grep": "allow",
|
|
146
|
+
"list": "allow",
|
|
147
|
+
"todowrite": "allow",
|
|
148
|
+
"webfetch": "allow",
|
|
149
|
+
"websearch": "allow"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"hermod": {
|
|
153
|
+
"description": "Hermod — Git and GitHub operations specialist.",
|
|
154
|
+
"mode": "subagent",
|
|
155
|
+
"model": "minimax/MiniMax-M2.7",
|
|
156
|
+
"color": "#06b6d4",
|
|
157
|
+
"permission": {
|
|
158
|
+
"read": "allow",
|
|
159
|
+
"edit": "allow",
|
|
160
|
+
"bash": "allow",
|
|
161
|
+
"glob": "allow",
|
|
162
|
+
"grep": "allow",
|
|
163
|
+
"list": "allow",
|
|
164
|
+
"webfetch": "allow",
|
|
165
|
+
"websearch": "allow"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"thor": {
|
|
169
|
+
"description": "Thor — Medium-complexity tasks, strong and reliable.",
|
|
170
|
+
"mode": "subagent",
|
|
171
|
+
"model": "minimax/MiniMax-M2.7",
|
|
172
|
+
"color": "#a855f7",
|
|
173
|
+
"permission": {
|
|
174
|
+
"read": "allow",
|
|
175
|
+
"edit": "allow",
|
|
176
|
+
"bash": "allow",
|
|
177
|
+
"glob": "allow",
|
|
178
|
+
"grep": "allow",
|
|
179
|
+
"list": "allow",
|
|
180
|
+
"todowrite": "allow",
|
|
181
|
+
"webfetch": "allow",
|
|
182
|
+
"websearch": "allow"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"baldr": {
|
|
186
|
+
"description": "Baldr — UI/UX design system specialist.",
|
|
187
|
+
"mode": "subagent",
|
|
188
|
+
"model": "minimax/MiniMax-M2.7",
|
|
189
|
+
"color": "#ec4899",
|
|
190
|
+
"permission": {
|
|
191
|
+
"read": "allow",
|
|
192
|
+
"edit": "allow",
|
|
193
|
+
"bash": "allow",
|
|
194
|
+
"glob": "allow",
|
|
195
|
+
"grep": "allow",
|
|
196
|
+
"list": "allow",
|
|
197
|
+
"todowrite": "allow",
|
|
198
|
+
"webfetch": "allow",
|
|
199
|
+
"websearch": "allow"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"tyr": {
|
|
203
|
+
"description": "Tyr — Complex implementation, debugging, architecture.",
|
|
204
|
+
"mode": "subagent",
|
|
205
|
+
"model": "minimax/MiniMax-M3",
|
|
206
|
+
"color": "#f59e0b",
|
|
207
|
+
"permission": {
|
|
208
|
+
"read": "allow",
|
|
209
|
+
"edit": "allow",
|
|
210
|
+
"bash": "allow",
|
|
211
|
+
"glob": "allow",
|
|
212
|
+
"grep": "allow",
|
|
213
|
+
"list": "allow",
|
|
214
|
+
"todowrite": "allow",
|
|
215
|
+
"webfetch": "allow",
|
|
216
|
+
"websearch": "allow"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"vidarr": {
|
|
220
|
+
"description": "Vidarr — Ultimate fallback via GPT-5.5.",
|
|
221
|
+
"mode": "subagent",
|
|
222
|
+
"model": "openai/gpt-5.5",
|
|
223
|
+
"color": "#dc2626",
|
|
224
|
+
"permission": {
|
|
225
|
+
"read": "allow",
|
|
226
|
+
"edit": "allow",
|
|
227
|
+
"bash": "allow",
|
|
228
|
+
"glob": "allow",
|
|
229
|
+
"grep": "allow",
|
|
230
|
+
"list": "allow",
|
|
231
|
+
"todowrite": "allow",
|
|
232
|
+
"webfetch": "allow",
|
|
233
|
+
"websearch": "allow"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"forseti": {
|
|
237
|
+
"description": "Forseti — Audits and corrects plans before execution.",
|
|
238
|
+
"mode": "subagent",
|
|
239
|
+
"model": "minimax/MiniMax-M3",
|
|
240
|
+
"color": "#ef4444",
|
|
241
|
+
"permission": {
|
|
242
|
+
"read": "allow",
|
|
243
|
+
"edit": "deny",
|
|
244
|
+
"bash": "allow",
|
|
245
|
+
"glob": "allow",
|
|
246
|
+
"grep": "allow",
|
|
247
|
+
"list": "allow",
|
|
248
|
+
"todowrite": "allow",
|
|
249
|
+
"question": "allow",
|
|
250
|
+
"webfetch": "allow",
|
|
251
|
+
"websearch": "allow"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"semble-search": {
|
|
255
|
+
"description": "Code search agent for exploring any codebase.",
|
|
256
|
+
"mode": "subagent",
|
|
257
|
+
"permission": {
|
|
258
|
+
"bash": "allow",
|
|
259
|
+
"read": "allow"
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"command": {
|
|
264
|
+
"audit": {
|
|
265
|
+
"description": "Run bizar audit to scan agent configuration for security issues.",
|
|
266
|
+
"agent": "forseti",
|
|
267
|
+
"template": "commands-bizar/audit.md"
|
|
268
|
+
},
|
|
269
|
+
"explain": {
|
|
270
|
+
"description": "Route to @frigg for read-only codebase Q&A.",
|
|
271
|
+
"agent": "frigg",
|
|
272
|
+
"template": "commands-bizar/explain.md"
|
|
273
|
+
},
|
|
274
|
+
"init": {
|
|
275
|
+
"description": "Run bizar init to detect project stack and install skills.",
|
|
276
|
+
"agent": "heimdall",
|
|
277
|
+
"template": "commands-bizar/init.md"
|
|
278
|
+
},
|
|
279
|
+
"learn": {
|
|
280
|
+
"description": "Extract patterns from current session.",
|
|
281
|
+
"agent": "heimdall",
|
|
282
|
+
"template": "commands-bizar/learn.md"
|
|
283
|
+
},
|
|
284
|
+
"plan": {
|
|
285
|
+
"description": "Open the Bizar visual plan canvas.",
|
|
286
|
+
"agent": "odin",
|
|
287
|
+
"template": "commands-bizar/plan.md"
|
|
288
|
+
},
|
|
289
|
+
"pr-review": {
|
|
290
|
+
"description": "PR review mode with @mimir and @forseti.",
|
|
291
|
+
"agent": "hermod",
|
|
292
|
+
"template": "commands-bizar/pr-review.md"
|
|
293
|
+
},
|
|
294
|
+
"tailscale-serve": {
|
|
295
|
+
"description": "Authenticate Tailscale Serve and expose a local port.",
|
|
296
|
+
"agent": "heimdall",
|
|
297
|
+
"template": "commands-bizar/tailscale-serve.md"
|
|
298
|
+
},
|
|
299
|
+
"visual-plan": {
|
|
300
|
+
"description": "Toggle the Bizar visual plan canvas.",
|
|
301
|
+
"agent": "odin",
|
|
302
|
+
"template": "commands-bizar/visual-plan.md"
|
|
303
|
+
},
|
|
304
|
+
"bizar": {
|
|
305
|
+
"description": "Bizar Plugin Menu.",
|
|
306
|
+
"agent": "odin",
|
|
307
|
+
"template": "commands-bizar/bizar.md\n\n$ARGUMENTS"
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polderlabs/bizar",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "Norse-pantheon multi-agent system for opencode — 13 agents across 4 cost tiers with cost-aware routing,
|
|
3
|
+
"version": "3.7.0",
|
|
4
|
+
"description": "Norse-pantheon multi-agent system for opencode — 13 agents across 4 cost tiers with cost-aware routing, plans, and a configurable agent harness.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"bizar": "cli/bin.mjs"
|
|
@@ -40,22 +40,7 @@
|
|
|
40
40
|
"optional": true
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
"engines": {
|
|
44
|
-
"node": ">=20"
|
|
45
|
-
},
|
|
46
|
-
"repository": {
|
|
47
|
-
"type": "git",
|
|
48
|
-
"url": "git+https://github.com/DrB0rk/BizarHarness.git"
|
|
49
|
-
},
|
|
50
|
-
"homepage": "https://github.com/DrB0rk/BizarHarness",
|
|
51
|
-
"bugs": {
|
|
52
|
-
"url": "https://github.com/DrB0rk/BizarHarness/issues"
|
|
53
|
-
},
|
|
54
|
-
"publishConfig": {
|
|
55
|
-
"access": "public"
|
|
56
|
-
},
|
|
57
43
|
"devDependencies": {
|
|
58
|
-
"
|
|
59
|
-
"typescript": "^5.9.3"
|
|
44
|
+
"typescript": "^5.0.0"
|
|
60
45
|
}
|
|
61
46
|
}
|