@zibby/agent-workflow 0.4.34 → 0.4.35

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.
Files changed (2) hide show
  1. package/README.md +12 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -70,6 +70,18 @@ zibby --help
70
70
 
71
71
  ---
72
72
 
73
+ ## 🚀 Self-hosted Zibby (single VM)
74
+
75
+ Run the **full Zibby platform** — control plane + agents + marketplace — on your own box:
76
+
77
+ ```bash
78
+ curl -fsSL https://dl.zibby.app/selfhosted/latest/install.sh | bash
79
+ ```
80
+
81
+ Requirements: Docker + ~8 GB RAM. The installer downloads the release bundle, `docker load`s the images locally (**no registry login needed**), generates secrets, brings the stack up, and prints your dashboard URL + access token. Free tier: up to 10 deployed agents.
82
+
83
+ ---
84
+
73
85
  ## The CLI: full workflow lifecycle
74
86
 
75
87
  All workflow operations live under `zibby agent <verb>` for consistency. The bare top-level forms (`zibby start`, `zibby deploy`, `zibby trigger`, `zibby logs`) are kept as backward-compat aliases.
@@ -265,18 +277,6 @@ Workflow itself ships **zero agent strategies and zero skills** — bring your o
265
277
 
266
278
  ---
267
279
 
268
- ## Self-hosted Zibby (single VM)
269
-
270
- Run the **full Zibby platform** — control plane + agents + marketplace — on your own box:
271
-
272
- ```bash
273
- curl -fsSL https://dl.zibby.app/selfhosted/latest/install.sh | bash
274
- ```
275
-
276
- Requirements: Docker + ~8 GB RAM. The installer downloads the release bundle, `docker load`s the images locally (**no registry login needed**), generates secrets, brings the stack up, and prints your dashboard URL + access token. Free tier: up to 10 deployed agents.
277
-
278
- ---
279
-
280
280
  ## Status
281
281
 
282
282
  `0.1.x`. The public protocol surface is stable and consumed by Zibby Studio + tooling:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zibby/agent-workflow",
3
- "version": "0.4.34",
3
+ "version": "0.4.35",
4
4
  "description": "Graph-based AI agent workflow orchestration. Bring your own agent strategies.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",