@polderlabs/bizar 3.5.1 → 3.5.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/cli/bin.mjs +2 -2
- package/package.json +1 -1
package/cli/bin.mjs
CHANGED
|
@@ -61,7 +61,7 @@ function showHelp() {
|
|
|
61
61
|
bizar test-gate Detect & run the project's test suite
|
|
62
62
|
bizar update Update opencode, bizar, and/or bizar-plugin
|
|
63
63
|
bizar service Manage the background service daemon
|
|
64
|
-
bizar dashboard Launch the web dashboard (uses bizar
|
|
64
|
+
bizar dashboard Launch the web dashboard (uses bizar)
|
|
65
65
|
bizar --setup Re-run setup manually (agents, plugin, RTK, Semble, Skills CLI)
|
|
66
66
|
bizar --check Print setup status as JSON, exit 1 if setup needed
|
|
67
67
|
bizar --help Show this help
|
|
@@ -280,7 +280,7 @@ if (args.includes('--check')) {
|
|
|
280
280
|
} else if (args[0] === 'service') {
|
|
281
281
|
if (args.includes('--help') || args.includes('-h')) showServiceHelp();
|
|
282
282
|
else await runServiceCommand(args[1]);
|
|
283
|
-
} else if (args[0] === 'dashboard') {
|
|
283
|
+
} else if (args[0] === 'dashboard' || args[0] === 'start' || args[0] === 'stop' || args[0] === 'status' || args[0] === 'tui') {
|
|
284
284
|
if (args.includes('--help') || args.includes('-h')) showDashboardHelp();
|
|
285
285
|
else await delegateToDash(args.slice(1));
|
|
286
286
|
} else if (args.includes('--bg') || args.includes('--detach')) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polderlabs/bizar",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.4",
|
|
4
4
|
"description": "Norse-pantheon multi-agent system for opencode — 13 agents across 4 cost tiers with cost-aware routing, per-project Hindsight memory, mods, schedules, and a background service daemon",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|