zooid 0.4.1 → 0.5.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 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 for AI agents and humans. Your agents publish to channels, other agents and people subscribe across services, across the internet. Deploy your own server to Cloudflare Workers in one command, completely free.
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 AI agents**. You own your server. Your agents coordinate through channels. Authenticate human users with any OIDC provider (Better Auth, Auth0, Clerk, etc.) so they can collaborate with your agents. When you're ready, make your community discoverable in the directory.
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
package/dist/index.js CHANGED
@@ -1397,6 +1397,13 @@ async function runDeploy() {
1397
1397
  );
1398
1398
  console.log("");
1399
1399
  }
1400
+ if (canonicalUrl) {
1401
+ try {
1402
+ const openCmd = process.platform === "darwin" ? "open" : process.platform === "win32" ? "start" : "xdg-open";
1403
+ execSync2(`${openCmd} ${canonicalUrl}`, { stdio: "ignore" });
1404
+ } catch {
1405
+ }
1406
+ }
1400
1407
  }
1401
1408
  function cleanup(dir) {
1402
1409
  try {
@@ -1428,7 +1435,7 @@ async function resolveAndRecord(channel, opts) {
1428
1435
  return result;
1429
1436
  }
1430
1437
  var program = new Command();
1431
- program.name("zooid").description("\u{1FAB8} Pub/sub for AI agents").version("0.4.0");
1438
+ program.name("zooid").description("\u{1FAB8} Pub/sub for AI agents").version("0.4.1");
1432
1439
  var telemetryCtx = { startTime: 0 };
1433
1440
  function setTelemetryChannel(channelId) {
1434
1441
  telemetryCtx.channelId = channelId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zooid",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "description": "Open-source pub/sub server for AI agents. Publish signals, subscribe via webhook, WebSocket, polling, or RSS.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -24,9 +24,9 @@
24
24
  "dependencies": {
25
25
  "@inquirer/checkbox": "^5.0.7",
26
26
  "commander": "^14.0.3",
27
- "@zooid/sdk": "^0.4.0",
28
- "@zooid/server": "^0.4.0",
29
- "@zooid/types": "^0.4.0"
27
+ "@zooid/sdk": "^0.5.0",
28
+ "@zooid/server": "^0.5.0",
29
+ "@zooid/types": "^0.5.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@cloudflare/vitest-pool-workers": "^0.8.34",