zooid 0.7.4 → 0.9.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 +5 -5
- package/dist/bin.js +218 -114
- package/dist/bin.js.map +1 -1
- package/dist/{chunk-OKGNOROJ.js → chunk-LOILUENL.js} +389 -51
- package/dist/chunk-LOILUENL.js.map +1 -0
- package/dist/index.js +1 -1
- package/package.json +13 -9
- package/src/bin.ts +1 -1
- package/src/commands/dev.ts +26 -12
- package/src/daemon/start-daemon.ts +29 -10
- package/src/web/fetch.integration.test.ts +61 -0
- package/src/web/fetch.test.ts +139 -0
- package/src/web/fetch.ts +85 -0
- package/src/web/pin.test.ts +24 -0
- package/src/web/pin.ts +13 -0
- package/src/web/resolve.test.ts +55 -27
- package/src/web/resolve.ts +22 -10
- package/src/web/test-helpers.ts +28 -0
- package/dist/chunk-OKGNOROJ.js.map +0 -1
- package/dist/web/assets/geist-cyrillic-wght-normal-CHSlOQsW.woff2 +0 -0
- package/dist/web/assets/geist-latin-ext-wght-normal-DMtmJ5ZE.woff2 +0 -0
- package/dist/web/assets/geist-latin-wght-normal-Dm3htQBi.woff2 +0 -0
- package/dist/web/assets/index-BqOX0Pv4.js +0 -305
- package/dist/web/assets/index-C-ZtBp7U.css +0 -1
- package/dist/web/assets/index-Dc8BJYf_.js +0 -118066
- package/dist/web/assets/reaction-picker-emoji-xD2HkULN.js +0 -716
- package/dist/web/favicon.svg +0 -1
- package/dist/web/index.html +0 -14
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# 🪸 Zooid
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> A chat app to collaborate with AI agents, alongside the rest of your team. Open-source, self-hostable, any model, any CLI.
|
|
4
4
|
|
|
5
|
-
Zooid is an open-source
|
|
5
|
+
Zooid is an open-source, self-hostable chat app for collaborating with AI agents alongside your team. It brings [ACP](https://agentclientprotocol.com)-compatible agents (Claude Code, [opencode](https://opencode.ai), Codex, …) into [Matrix](https://matrix.org) rooms as first-class participants — people and agents in the same rooms, threads, and approvals, no separate "AI dashboard," no vendor lock-in. Deploy with `zooid init`, run with `zooid dev`.
|
|
6
6
|
|
|
7
|
-
**Full docs: [zooid.dev/docs](https://zooid.dev/docs)**
|
|
7
|
+
**Full docs: [zooid.dev/docs](https://zooid.dev/docs)** · **Join the community server: [community.zoon.eco](https://community.zoon.eco)**
|
|
8
8
|
|
|
9
9
|
- **Protocol-first.** Matrix for transport (E2E encryption, federation), ACP for the agent contract. Pre-built images for Claude Code, opencode, and Codex; any other ACP-compatible harness (Cline, Gemini, or your own) connects too.
|
|
10
10
|
- **Containerized runtime.** Podman or Docker. Each agent runs in its own long-lived container with mounts, env, and capabilities declared in `zooid.yaml`.
|
|
@@ -34,7 +34,7 @@ Boot the local stack:
|
|
|
34
34
|
zooid dev
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
`zooid dev` starts a Tuwunel Matrix homeserver in a container, generates the Application Service registration, registers an `admin:admin` user, runs the daemon, and serves the [
|
|
37
|
+
`zooid dev` starts a Tuwunel Matrix homeserver in a container, generates the Application Service registration, registers an `admin:admin` user, runs the daemon, and serves the [Zooid web client](https://github.com/zooid-ai/clients).
|
|
38
38
|
|
|
39
39
|
Open `http://localhost:5173`, log in as `admin` / `admin`, join `#welcome`, and `@`-mention your agent.
|
|
40
40
|
|
|
@@ -48,7 +48,7 @@ Every layer is open and replaceable.
|
|
|
48
48
|
| -------- | --------- | ------------- | --------------------------------------------- |
|
|
49
49
|
| Protocol | Matrix | Open standard | Adopted by Germany, France, Switzerland, NATO |
|
|
50
50
|
| Server | Tuwunel | Apache-2.0 | Swiss government in production |
|
|
51
|
-
| Client |
|
|
51
|
+
| Client | Zooid web | Apache-2.0 | Built on `matrix-js-sdk` |
|
|
52
52
|
| Runtime | **Zooid** | MIT | This project |
|
|
53
53
|
|
|
54
54
|
## Agent images
|