bazilion 0.1.0 → 0.1.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/README.md +1 -1
- package/dist/cli.js +12 -12
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +648 -76
- package/dist/daemon.js.map +1 -1
- package/dist/worker.js +409 -63
- package/dist/worker.js.map +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ After connecting, enable `openai-codex` and curate at least one model. Credentia
|
|
|
72
72
|
|
|
73
73
|
- **CLI + daemon**, both spawned via `bazilion serve`. The daemon binds `127.0.0.1:4321` and owns `~/.bazilion/` (SQLite DB, profiles, agents, groups, skills, logs).
|
|
74
74
|
- **17 subcommand families**: `agent`, `profile`, `group`, `skill`, `provider`, `config`, `auth`, `memory`, `send`, `inbox`, `trigger`, `serve`, `doctor`, `backup`, `token`, `login`, `uninstall`.
|
|
75
|
-
- **Provider support** via [pi-ai](https://www.npmjs.com/package/@
|
|
75
|
+
- **Provider support** via [pi-ai](https://www.npmjs.com/package/@earendil-works/pi-ai): Anthropic, OpenAI (key + ChatGPT OAuth), Google AI Studio + Vertex, Azure OpenAI, AWS Bedrock, Mistral, Groq, Cerebras, xAI, Z.AI, Hugging Face, OpenRouter, Vercel AI Gateway, LM Studio, Ollama.
|
|
76
76
|
- **OpenClaw-compatible skills**: drop a `SKILL.md` into `~/.bazilion/skills/<name>/`, or import in bulk via `bazilion skill import --from openclaw`.
|
|
77
77
|
|
|
78
78
|
## Uninstall
|
package/dist/cli.js
CHANGED
|
@@ -6,7 +6,7 @@ import { defineCommand as defineCommand19, runCommand, showUsage } from "citty";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "bazilion",
|
|
9
|
-
version: "0.1.
|
|
9
|
+
version: "0.1.1",
|
|
10
10
|
description: "Multi-agent runtime CLI \u2014 spawn LLM agents, manage profiles/groups/skills, and run the local daemon.",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
repository: {
|
|
@@ -49,20 +49,20 @@ var package_default = {
|
|
|
49
49
|
access: "public"
|
|
50
50
|
},
|
|
51
51
|
dependencies: {
|
|
52
|
-
"@
|
|
53
|
-
"@
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
52
|
+
"@earendil-works/pi-agent-core": "^0.75.4",
|
|
53
|
+
"@earendil-works/pi-ai": "^0.75.4",
|
|
54
|
+
"@earendil-works/pi-coding-agent": "^0.75.4",
|
|
55
|
+
"@hono/node-server": "^2.0.3",
|
|
56
56
|
"@mozilla/readability": "^0.6.0",
|
|
57
|
-
"@tobilu/qmd": "^2.
|
|
57
|
+
"@tobilu/qmd": "^2.5.2",
|
|
58
58
|
"adm-zip": "^0.5.17",
|
|
59
|
-
citty: "^0.
|
|
60
|
-
hono: "^4.
|
|
59
|
+
citty: "^0.2.2",
|
|
60
|
+
hono: "^4.12.22",
|
|
61
61
|
linkedom: "^0.18.12",
|
|
62
62
|
"qrcode-terminal": "^0.12.0",
|
|
63
|
-
typebox: "^1.1.
|
|
64
|
-
undici: "^8.
|
|
65
|
-
yaml: "^2.
|
|
63
|
+
typebox: "^1.1.38",
|
|
64
|
+
undici: "^8.3.0",
|
|
65
|
+
yaml: "^2.9.0"
|
|
66
66
|
},
|
|
67
67
|
devDependencies: {
|
|
68
68
|
"@bazilion/api-types": "workspace:*",
|
|
@@ -745,7 +745,7 @@ var agentCommand = defineCommand({
|
|
|
745
745
|
});
|
|
746
746
|
|
|
747
747
|
// src/commands/auth.ts
|
|
748
|
-
import { loginOpenAICodex } from "@
|
|
748
|
+
import { loginOpenAICodex } from "@earendil-works/pi-ai/oauth";
|
|
749
749
|
import { defineCommand as defineCommand2 } from "citty";
|
|
750
750
|
function formatExpiry(ms) {
|
|
751
751
|
if (!ms) return "(unknown)";
|