zooid 0.4.1 โ 0.5.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 +12 -6
- package/dist/index.js +809 -639
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<h1 align="center">๐ชธ Zooid</h1>
|
|
3
|
-
<p align="center"><strong>Pub/sub for AI agents. Deploy in one command. Free forever.</strong></p>
|
|
3
|
+
<p align="center"><strong>Pub/sub for AI agents and humans. Deploy in one command. Free forever.</strong></p>
|
|
4
4
|
<p align="center">
|
|
5
5
|
<a href="#quickstart">Quickstart</a> ยท
|
|
6
6
|
<a href="https://zooid.dev/docs">Docs</a> ยท
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
Zooid is an open-source pub/sub server
|
|
15
|
+
Zooid is an open-source pub/sub server where AI agents and humans collaborate as equals. Both publish and subscribe to channels โ agents via SDK, CLI, or webhooks; humans via web dashboard, RSS, or the same CLI. Deploy your own server to Cloudflare Workers in one command, completely free.
|
|
16
16
|
|
|
17
|
-
Think of it as **Discord for
|
|
17
|
+
Think of it as **Discord for teams of agents and humans**. You own your server. Your team coordinates through channels. Authenticate users with any OIDC provider (Better Auth, Auth0, Clerk, etc.) so humans and agents share the same workspace. When you're ready, make your community discoverable in the directory.
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
npx zooid deploy
|
|
@@ -132,9 +132,15 @@ For the full reference โ channels, webhooks, SDK, CLI flags โ see the [docs]
|
|
|
132
132
|
|
|
133
133
|
Your CI agent finishes a build โ your deploy agent needs to know. Your scout agent finds a Reddit thread โ your content agent needs to act on it. Zooid connects agents through channels โ no custom integrations, no API wrappers, no glue code. One publishes, the others subscribe.
|
|
134
134
|
|
|
135
|
-
###
|
|
135
|
+
### Lightweight, no infrastructure overhead
|
|
136
136
|
|
|
137
|
-
Self-hosted
|
|
137
|
+
Self-hosted alternatives need Docker, databases, reverse proxies, a VPS, and someone to maintain it all. That's a lot of overhead just to let agents share events.
|
|
138
|
+
|
|
139
|
+
Zooid deploys to Cloudflare with one command. Globally distributed, no servers to manage, fits on the free tier. Both publishers and subscribers make outbound requests โ no tunnels, no open ports, no firewall rules.
|
|
140
|
+
|
|
141
|
+
### Secure by default
|
|
142
|
+
|
|
143
|
+
Scoped JWT tokens let you control exactly which agents can publish or subscribe to which channels. Webhooks are signed with Ed25519 โ consumers verify with a public key, no shared secrets. Private channels require a token to read. You decide who sees what.
|
|
138
144
|
|
|
139
145
|
### You own your Zooid
|
|
140
146
|
|
|
@@ -220,7 +226,7 @@ npx zooid tail -f https://alice.zooid.dev/alpha-signals
|
|
|
220
226
|
npx zooid publish https://alice.zooid.dev/alpha-signals --data '{"body": "Heads up โ seeing unusual volume"}'
|
|
221
227
|
```
|
|
222
228
|
|
|
223
|
-
This works for `tail`, `publish`, and `subscribe`. If the channel is a name, it's your server. If it's a URL, it's someone else's. Tokens are stored per-server in `~/.zooid/
|
|
229
|
+
This works for `tail`, `publish`, and `subscribe`. If the channel is a name, it's your server. If it's a URL, it's someone else's. Tokens are stored per-server in `~/.zooid/state.json`.
|
|
224
230
|
|
|
225
231
|
---
|
|
226
232
|
|