@polderlabs/bizar 10.4.0 → 10.4.1
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/provision.mjs +8 -0
- package/package.json +1 -1
- package/packages/sdk/package.json +1 -1
package/cli/provision.mjs
CHANGED
|
@@ -928,3 +928,11 @@ if (import.meta.url === `file://${process.argv[1]}`) {
|
|
|
928
928
|
process.exit(1);
|
|
929
929
|
});
|
|
930
930
|
}
|
|
931
|
+
|
|
932
|
+
// Back-compat alias — v10.0.0 historical API. 'bizar update' historically
|
|
933
|
+
// called `runUpdate(args)`; we collapsed install + update onto
|
|
934
|
+
// `runProvision({ mode: 'update', ... })`. Keep `runUpdate` importable so
|
|
935
|
+
// `cli/commands/install.mjs` (which still uses the historical signature)
|
|
936
|
+
// works without modification.
|
|
937
|
+
export const runUpdate = (subargs, opts = {}) =>
|
|
938
|
+
runProvision({ ...opts, mode: 'update', subargs });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polderlabs/bizar",
|
|
3
|
-
"version": "10.4.
|
|
3
|
+
"version": "10.4.1",
|
|
4
4
|
"description": "Norse-pantheon multi-agent system for Claude Code — 14 agents across 4 cost tiers with cost-aware routing, plans, and a configurable agent harness. Ships as a single npm package with the dashboard server, Claude Code MCP server, and typed SDK.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|