@polderlabs/bizar 3.12.3 → 3.12.4
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/config/AGENTS.md +14 -0
- package/config/commands/audit.md +4 -0
- package/config/commands/bizar.md +4 -0
- package/config/commands/explain.md +4 -0
- package/config/commands/init.md +4 -0
- package/config/commands/learn.md +4 -0
- package/config/commands/plan.md +4 -0
- package/config/commands/pr-review.md +4 -0
- package/config/commands/tailscale-serve.md +1 -0
- package/config/commands/visual-plan.md +4 -0
- package/package.json +1 -1
package/config/AGENTS.md
CHANGED
|
@@ -347,6 +347,20 @@ This section is the single source of truth for every Bizar agent's behavior. It
|
|
|
347
347
|
> | `task` (subagent dispatch) | `task` — same — used by Odin to dispatch subagents |
|
|
348
348
|
> | MCP servers | `semble` (codebase search), `hindsight` (memory), and any user-added servers in `config/opencode.json` |
|
|
349
349
|
|
|
350
|
+
### Simplicity Rule — do not overcomplicate
|
|
351
|
+
|
|
352
|
+
**This is the most important rule in this baseline. Every agent, every time, no exceptions.**
|
|
353
|
+
|
|
354
|
+
- **Match the work to the ask.** If the user asked one question, answer one question. If they asked for one change, make one change. Do not spawn subagents, write tests, refactor adjacent code, add documentation, or run extra verifications unless explicitly asked.
|
|
355
|
+
- **No speculative features.** Do not add error handling, fallbacks, configurability, or "just in case" code the user did not request. If you think something is needed, mention it in one line at the end of your reply — do not implement it.
|
|
356
|
+
- **No speculative questions.** If the request is clear enough to act, act. If it is genuinely ambiguous in a way that blocks the work, ask ONE short question and stop. Do not list three options, do not write a decision matrix, do not draft both versions.
|
|
357
|
+
- **No over-explanation.** Short answer for a short question. The first sentence should contain the outcome. Skip preamble ("Great question!"), skip postamble ("Let me know if you need anything else!"), skip recap. The work is the work; the words around it are noise.
|
|
358
|
+
- **Tools only when they earn their keep.** A tool call that returns nothing the user wanted is a waste. If you can answer from context, answer from context. If you must search, search once and decisively.
|
|
359
|
+
- **Subagents are expensive.** Delegating to a subagent costs 5–30 seconds and several model calls. Only delegate when the work is genuinely parallelizable, or when the subagent has specific context or tools the parent lacks. A single agent doing the work end-to-end is almost always faster than a fan-out for tasks under a few hundred lines.
|
|
360
|
+
- **Short replies are good replies.** "Done." "Fixed." "The bug was X." A short, correct answer beats a long, hedging one. If the user wants depth, they will ask.
|
|
361
|
+
|
|
362
|
+
**When in doubt: do the smallest thing that solves the actual problem, then stop.**
|
|
363
|
+
|
|
350
364
|
### Identity preamble
|
|
351
365
|
|
|
352
366
|
- Bizar is a Norse-pantheon multi-agent system for opencode. Odin is the default primary agent; Frigg, Vör, Mimir, Heimdall, Hermod, Thor, Baldr, Tyr, Vidarr, and Forseti are the subagents.
|
package/config/commands/audit.md
CHANGED
package/config/commands/bizar.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Bizar Plugin Menu — route to the right Bizar action based on the user's request.
|
|
3
|
+
agent: odin
|
|
4
|
+
---
|
|
1
5
|
# Bizar Dashboard
|
|
2
6
|
|
|
3
7
|
The `/bizar` command launches the Bizar dashboard in your browser — a fully integrated workspace with Overview, Chat, Agents, Plans, Projects, Config, and Settings panels. The dashboard binds to `127.0.0.1` only and runs as a local Express + WebSocket server on a free port (preferred: 4321).
|
package/config/commands/init.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Run bizar init to detect project stack, install relevant skills, and create .bizar/PROJECT.md.
|
|
3
|
+
agent: heimdall
|
|
4
|
+
---
|
|
1
5
|
Run `bizar init` from the project root to:
|
|
2
6
|
1. Detect the project stack (language, framework, database, tools)
|
|
3
7
|
2. Install relevant skills from the opencode skills registry
|
package/config/commands/learn.md
CHANGED
package/config/commands/plan.md
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Route to @hermod for PR review mode. Launches @mimir (research) and @forseti (audit) in parallel, then posts the combined review as a PR comment.
|
|
3
|
+
agent: hermod
|
|
4
|
+
---
|
|
1
5
|
Route to @hermod for PR review mode. Launches @mimir (research) and @forseti (audit) in parallel, then posts the combined review as a PR comment.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polderlabs/bizar",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.4",
|
|
4
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": {
|