zooid 0.13.0 → 0.14.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/README.md +6 -1
- package/dist/bin.js +674 -171
- package/dist/bin.js.map +1 -1
- package/dist/{chunk-YZ4IO5MR.js → chunk-R5S26T7B.js} +20523 -507
- package/dist/chunk-R5S26T7B.js.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/package.json +11 -9
- package/src/build-registry.context.test.ts +3 -3
- package/src/build-registry.ts +67 -24
- package/src/daemon/delivery-cache.test.ts +34 -0
- package/src/daemon/delivery-cache.ts +36 -0
- package/src/daemon/load-custom-verifiers.ts +43 -0
- package/src/daemon/start-daemon.ts +162 -38
- package/src/daemon/task-journal.test.ts +19 -0
- package/src/daemon/task-journal.ts +32 -0
- package/src/daemon/trigger-rooms.test.ts +60 -0
- package/src/daemon/trigger-rooms.ts +0 -0
- package/src/daemon/trigger-runner.test.ts +71 -0
- package/src/daemon/trigger-runner.ts +41 -0
- package/src/daemon/trigger-scheduler.ts +55 -0
- package/src/daemon/webhook-routes.test.ts +74 -0
- package/src/daemon/webhook-routes.ts +202 -0
- package/src/daemon/webhook-verify.test.ts +155 -0
- package/src/daemon/webhook-verify.ts +155 -0
- package/src/pi-extension-install.test.ts +65 -0
- package/src/pi-extension-install.ts +56 -0
- package/dist/chunk-YZ4IO5MR.js.map +0 -1
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ zooid init
|
|
|
32
32
|
|
|
33
33
|
`zooid init` asks which harness (`claude`, `codex`, `opencode`, `pi`), which model provider, and how to authenticate. It writes a clean `zooid.yaml` and any `.env` it needs.
|
|
34
34
|
|
|
35
|
-
Every preset can run off a subscription you already have instead of a fresh API key.
|
|
35
|
+
Every preset can run off a subscription you already have instead of a fresh API key.
|
|
36
36
|
|
|
37
37
|
Boot the local stack:
|
|
38
38
|
|
|
@@ -91,6 +91,11 @@ Zooid publishes a small set of base images on GHCR. Drop one into `zooid.yaml` u
|
|
|
91
91
|
- `ghcr.io/zooid-ai/agent-opencode` — agent-base + opencode.
|
|
92
92
|
- `ghcr.io/zooid-ai/agent-pi` — agent-base + pi + pi-acp.
|
|
93
93
|
|
|
94
|
+
Pi does not expose MCP servers. When a Pi agent starts, Zooid installs its
|
|
95
|
+
native extension at `~/.pi/agent/extensions/zooid-tasks.js`; it gives the agent
|
|
96
|
+
the `zooid_*` room-reading and task tools while preserving any operator-owned
|
|
97
|
+
extensions already in that directory.
|
|
98
|
+
|
|
94
99
|
The persona — `CLAUDE.md` / `AGENTS.md`, `.claude/settings.json`, skills, MCP servers — lives in the agent's `workdir` on the host. Zooid bind-mounts that directory into the container at runtime, so the shim picks it up the same way it would on your laptop. No `docker build`, no custom image, no rebuild when you tweak instructions.
|
|
95
100
|
|
|
96
101
|
## Contributing
|