@zibby/cli 0.1.90 → 0.1.95

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 (36) hide show
  1. package/README.md +94 -848
  2. package/dist/bin/zibby.js +47 -2
  3. package/dist/commands/chat.js +1 -1
  4. package/dist/commands/workflow.js +19 -19
  5. package/dist/commands/workflows/agent-helpers.js +18 -0
  6. package/dist/commands/workflows/deploy.js +47 -24
  7. package/dist/commands/workflows/env-helpers.js +2 -0
  8. package/dist/commands/workflows/env.js +39 -0
  9. package/dist/commands/workflows/generate.js +48 -31
  10. package/dist/commands/workflows/input-helpers.js +7 -0
  11. package/dist/commands/workflows/list.js +2 -2
  12. package/dist/commands/workflows/logs.js +22 -22
  13. package/dist/commands/workflows/run-local.js +19 -0
  14. package/dist/commands/workflows/run.js +5 -5
  15. package/dist/commands/workflows/start.js +11 -11
  16. package/dist/commands/workflows/trigger.js +9 -9
  17. package/dist/package.json +4 -4
  18. package/dist/templates/zibby-workflow-claude/agents-md-block.md +113 -0
  19. package/dist/templates/zibby-workflow-claude/claude/agents/zibby-test-author.md +72 -0
  20. package/dist/templates/zibby-workflow-claude/claude/agents/zibby-workflow-builder.md +81 -0
  21. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-add-node.md +75 -0
  22. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-debug.md +67 -0
  23. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-delete.md +37 -0
  24. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-deploy.md +77 -0
  25. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-list.md +30 -0
  26. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-static-ip.md +68 -0
  27. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-tail.md +53 -0
  28. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-test-debug.md +59 -0
  29. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-test-generate.md +39 -0
  30. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-test-run.md +48 -0
  31. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-test-write.md +46 -0
  32. package/dist/templates/zibby-workflow-claude/claude/commands/zibby-trigger.md +52 -0
  33. package/dist/templates/zibby-workflow-claude/claude/settings.json +10 -0
  34. package/dist/templates/zibby-workflow-claude/cursor/rules/zibby-workflows.mdc +56 -0
  35. package/dist/templates/zibby-workflow-claude/manifest.json +43 -0
  36. package/package.json +4 -4
@@ -0,0 +1,53 @@
1
+ <!-- zibby-template-version: 1 -->
2
+ # /zibby-tail — stream live logs from a Zibby workflow
3
+
4
+ You are helping the user tail logs from a workflow execution.
5
+
6
+ `zibby workflow logs <jobId> -t` is the live-streaming variant (like `heroku logs --tail` or `docker compose logs -f`). Without `-t`, you get a one-shot fetch.
7
+
8
+ Canonical docs: **https://docs.zibby.app/workflows/logs**
9
+
10
+ ## What `<jobId>` accepts
11
+
12
+ - A **workflow UUID** (`2b1ea07f-...`) → tails ALL currently-active executions of that workflow, plus any new ones triggered while the tail is open. Lines are interleaved by arrival time, prefixed with `(taskId)` so concurrent runs are distinguishable.
13
+ - An **execution ID** (`abc-...`) → tails just that single execution. Closes when the execution drains.
14
+
15
+ ## Example flow
16
+
17
+ ```
18
+ $ zibby workflow trigger 2b1ea07f-3ede-4bfd-a51d-431f0bab008e
19
+ Job ID: 569ef1ee-15c8-4ee7-af30-933c8bec7ea7
20
+
21
+ $ zibby workflow logs 2b1ea07f-3ede-4bfd-a51d-431f0bab008e -t
22
+ Streaming logs for workflow 2b1ea07f-...
23
+ Press Ctrl+C to stop.
24
+
25
+ ┌─ Execution: 569ef1ee...7ea7 (task: 9e61c690)
26
+ └─ Streaming logs...
27
+
28
+ 2026-05-04 06:16:27.621 (9e61c690) zibby v0.1.91
29
+ 2026-05-04 06:16:27.997 (9e61c690) Workflow: hello-world
30
+ 2026-05-04 06:16:33.055 (9e61c690) │ Prompt sent to LLM:
31
+ ...
32
+ 2026-05-04 06:16:56.389 (9e61c690) ✓ Workflow completed
33
+ ```
34
+
35
+ ## Tail behavior worth knowing
36
+
37
+ - **Auto-switch:** when the current execution drains and a new trigger lands, the tail seamlessly picks it up — no need to re-run the command.
38
+ - **Multi-attach:** if you trigger two workflows in parallel, the tail attaches to both. Lines from each are interleaved by timestamp.
39
+ - **Reconnect:** transient network blips reconnect silently. Long quiet windows (3+ min) are kept alive via 5s keepalives.
40
+
41
+ ## Steps for this command
42
+
43
+ 1. Identify the jobId. If user gives a workflow name (not UUID), look it up via `zibby workflow list` and use the UUID.
44
+ 2. **Run in the background** — `-t` is a long-running stream. If you call `Bash` without `run_in_background: true` it'll block the chat for minutes:
45
+ ```
46
+ Bash({ command: "zibby workflow logs <jobId> -t", run_in_background: true })
47
+ ```
48
+ Then use `BashOutput` (or whatever your background-output tool is) to read new lines as they arrive.
49
+ 3. If the user wants a **one-shot snapshot** (no follow), drop the `-t` flag and call Bash normally:
50
+ ```
51
+ Bash({ command: "zibby workflow logs <jobId>" })
52
+ ```
53
+ 4. To stop the live tail: kill the background bash task. The CLI exits cleanly with `Stopped streaming.`
@@ -0,0 +1,59 @@
1
+ <!-- zibby-template-version: 1 -->
2
+ # /zibby-test-debug — diagnose a failing Zibby test
3
+
4
+ You are helping the user figure out why a test failed.
5
+
6
+ Canonical docs: **https://docs.zibby.app/tests/debugging**
7
+
8
+ ## Diagnostic recipe
9
+
10
+ Apply in order. Stop at the first thing that explains the symptom.
11
+
12
+ ### 1. Was the failure in the AGENT phase or the PLAYWRIGHT phase?
13
+
14
+ Two places things go wrong:
15
+ - **Agent phase** (`generate_script` / `execute_live`) — the AI couldn't figure out what to do or what selector to use. Look for `MCP error`, `tool timeout`, or generic LLM gibberish in the output.
16
+ - **Playwright phase** (after script generation) — script ran but an assertion failed or a selector didn't match. Look for `expect(...)` failures, `Timeout` waiting for selector, or "element not visible".
17
+
18
+ ### 2. Open the artifacts
19
+
20
+ Each run produces:
21
+ - `test-results/<spec-name>/video.webm` — watch what happened
22
+ - `test-results/<spec-name>/trace.zip` — Playwright trace; open with `npx playwright show-trace <path>`
23
+ - `.zibby/output/sessions/<session-id>/` — agent's internal state, prompts, responses
24
+ - `tests/<spec-name>.spec.js` — the generated Playwright code
25
+
26
+ The video usually tells you in 30 seconds what's wrong.
27
+
28
+ ### 3. Check the spec
29
+
30
+ Spec ambiguity is the most common cause. If the spec says "click the button" and there are five buttons, the agent picks one — possibly the wrong one. Re-read the spec asking: would a stranger know exactly which element this means?
31
+
32
+ ### 4. Re-run with more verbosity
33
+
34
+ ```
35
+ Bash(zibby test test-specs/<name>.txt --verbose) # info-level logs
36
+ Bash(zibby test test-specs/<name>.txt --debug) # all logs, lots
37
+ Bash(zibby test test-specs/<name>.txt --headed) # see the browser
38
+ ```
39
+
40
+ ### 5. Re-execute one node from a prior session
41
+
42
+ If `execute_live` failed but the script generation was OK, re-execute just that node against the existing session:
43
+ ```
44
+ Bash(zibby test --node execute_live --session last)
45
+ ```
46
+
47
+ ### 6. Common errors and fixes
48
+
49
+ | Symptom | Likely cause | Fix |
50
+ |---------|-------------|-----|
51
+ | "ZIBBY_API_KEY required" | not authenticated | `Bash(zibby login)` |
52
+ | "MCP server not responding" | playwright-mcp config drifted | `Bash(zibby setup-playwright)` |
53
+ | "Selector not found" | UI changed since last run | re-generate from the spec, or update selector in `.spec.js` |
54
+ | Agent loops forever in `execute_live` | spec is too vague | tighten the spec; add the explicit selector text |
55
+ | "Module not found" | missing dep in repo | `Bash(npm install)` in the repo root |
56
+
57
+ ### 7. When to escalate
58
+
59
+ If the same spec passed yesterday and fails today, and the codebase didn't change → check if Zibby pushed an agent update (`zibby --version`). Otherwise it's almost always spec ambiguity or a real product regression.
@@ -0,0 +1,39 @@
1
+ <!-- zibby-template-version: 1 -->
2
+ # /zibby-test-generate — generate test specs from a Jira ticket / requirements
3
+
4
+ You are helping the user auto-generate test specs from a ticket description (Jira) or a free-text requirements doc. Zibby's `generate` command runs the configured AI agent against the codebase + ticket and produces `.txt` specs in `test-specs/`.
5
+
6
+ Canonical docs: **https://docs.zibby.app/tests/generating**
7
+
8
+ ## Inputs the command accepts
9
+
10
+ - **Jira ticket key:** `-t ENG-1234` — fetches the ticket from the configured Jira integration
11
+ - **Inline description:** `-d "When a user clicks Buy, charge the card and email a receipt"`
12
+ - **File:** `-i path/to/requirements.md`
13
+ - **Repo path** (defaults to cwd): `--repo /path/to/codebase`
14
+
15
+ ## Steps
16
+
17
+ 1. **Get the source.** Ask the user: ticket key, file, or paste the requirements?
18
+
19
+ 2. **Run generate:**
20
+ ```
21
+ Bash(zibby generate -t ENG-1234)
22
+ Bash(zibby generate -i requirements.md)
23
+ Bash(zibby generate -d "happy-path checkout flow")
24
+ ```
25
+
26
+ 3. **Pick the agent and model** if the user has preferences:
27
+ ```
28
+ Bash(zibby generate -t ENG-1234 --agent claude --model claude-opus-4)
29
+ ```
30
+
31
+ 4. **Output destination.** Specs land in `test-specs/` by default; override with `-o <dir>`.
32
+
33
+ 5. **Review before running.** After generation, the user should read the spec(s) and tweak. Then `/zibby-test-run` to execute.
34
+
35
+ ## Tips
36
+
37
+ - **Better tickets = better specs.** Vague tickets ("fix login") generate vague tests. Tight acceptance criteria ("login redirects to /dashboard on success, shows 'invalid' on failure") generate sharp specs.
38
+ - **Generate iterates.** If the first cut is wrong, re-run with `-d "be more specific about X"` rather than hand-editing.
39
+ - **The agent reads the codebase.** It looks at component files, route definitions, etc., so the specs reference real selectors and URLs. Run from the actual repo root, not a subdir.
@@ -0,0 +1,48 @@
1
+ <!-- zibby-template-version: 1 -->
2
+ # /zibby-test-run — execute a Zibby test spec
3
+
4
+ You are helping the user run an existing test spec through Zibby. A spec is a `.txt` file describing what to test in plain language; Zibby's runner turns it into a Playwright execution and produces a video + JSON results.
5
+
6
+ Canonical docs: **https://docs.zibby.app/tests/running**
7
+
8
+ ## Steps
9
+
10
+ 1. **Identify the spec.** Most projects keep specs under `test-specs/` (configurable in `.zibby.config.mjs` `paths.specs`). If user named one, use it. Otherwise list what's there and ask:
11
+ ```
12
+ ls test-specs/
13
+ ```
14
+
15
+ 2. **Run it.** From the project root:
16
+ ```
17
+ Bash(zibby test test-specs/<name>.txt)
18
+ ```
19
+ For a quick inline test without writing a spec file:
20
+ ```
21
+ Bash(zibby test "go to example.com and check that the title contains Example")
22
+ ```
23
+
24
+ 3. **Output to expect.** Zibby streams the run live — agent thinking, browser actions, assertion results, final pass/fail. Generated `.spec.js` lands in `tests/<name>.spec.js` (configurable via `paths.generated`). Video + traces under `test-results/`.
25
+
26
+ 4. **If running headless / CI:**
27
+ ```
28
+ Bash(zibby test test-specs/<name>.txt --headless)
29
+ ```
30
+
31
+ 5. **If running a specific node only** (advanced — re-execute one phase of a prior session):
32
+ ```
33
+ Bash(zibby test --node execute_live --session last)
34
+ ```
35
+
36
+ ## Useful flags
37
+
38
+ - `--agent claude|cursor|codex|gemini` — override the configured agent for this run
39
+ - `--workflow QuickSmokeWorkflow` — use a non-default workflow for the run
40
+ - `--verbose` / `--debug` — escalate log levels
41
+ - `-m, --mem` — enable test memory (Dolt-backed knowledge from prior runs)
42
+ - `--sync` / `--no-sync` — force / skip cloud upload regardless of config
43
+
44
+ ## Common failure modes
45
+
46
+ - **"No spec found"** — path is relative to project root, not cwd. Check `paths.specs` in `.zibby.config.mjs`.
47
+ - **"Browser crashed"** — usually the playwright browser cache is stale. Re-run with `--headed` once to refresh, then `--headless`.
48
+ - **MCP errors during `execute_live`** — the agent's MCP tool config may need refreshing. See `/zibby-test-debug`.
@@ -0,0 +1,46 @@
1
+ <!-- zibby-template-version: 1 -->
2
+ # /zibby-test-write — author a new Zibby test spec
3
+
4
+ You are helping the user write a new test spec. Specs are plain-language `.txt` files in `test-specs/` (configurable via `.zibby.config.mjs` `paths.specs`). Zibby's runner converts them to Playwright at execution time.
5
+
6
+ Canonical docs: **https://docs.zibby.app/tests/specs**
7
+
8
+ ## Spec format (informal but conventional)
9
+
10
+ A spec is mostly imperative English with one action per line. Common shape:
11
+
12
+ ```
13
+ Title: <one-line summary>
14
+
15
+ Setup:
16
+ - Open <url>
17
+ - Log in as <user>
18
+
19
+ Steps:
20
+ - Click <element>
21
+ - Type <value> into <field>
22
+ - Wait for <state>
23
+
24
+ Verify:
25
+ - <assertion>
26
+ - <assertion>
27
+ ```
28
+
29
+ Zibby tolerates loose phrasing — what matters is being unambiguous about WHICH element and WHAT value. Use stable selectors (visible text, ARIA labels) over CSS class names.
30
+
31
+ ## Steps for this command
32
+
33
+ 1. **Ask the user what they want to test.** What's the user flow? What are they verifying? What URL?
34
+ 2. **Find a similar existing spec to mirror.** `ls test-specs/` and read 1-2 to match the project's conventions.
35
+ 3. **Write the spec to `test-specs/<kebab-case-name>.txt`** using `Write` tool.
36
+ 4. **Offer to run it immediately** with `/zibby-test-run` (or just `Bash(zibby test test-specs/<name>.txt)`).
37
+
38
+ ## Naming conventions
39
+
40
+ - kebab-case: `login-with-sso.txt`, `cart-checkout-happy-path.txt`
41
+ - Group by feature: `users-create.txt`, `users-edit.txt`, `users-delete.txt`
42
+ - Avoid ambiguous names like `test1.txt`
43
+
44
+ ## When the spec is complex
45
+
46
+ For multi-page flows or many assertions, split into multiple specs and run them as a collection. Don't pile everything into one spec — Playwright errors are easier to localize when each spec is one user goal.
@@ -0,0 +1,52 @@
1
+ <!-- zibby-template-version: 1 -->
2
+ # /zibby-trigger — run a deployed Zibby workflow
3
+
4
+ You are helping the user trigger a deployed workflow execution.
5
+
6
+ A trigger creates a new ECS Fargate task that loads the workflow's bundle, runs the graph, and writes status + logs as it goes.
7
+
8
+ Canonical docs: **https://docs.zibby.app/workflows/triggering**
9
+
10
+ ## Steps
11
+
12
+ 1. **Get the workflow UUID.** The user should provide it; if not, run `zibby workflow list` to discover it. UUIDs are stable across deploys (the same workflow always has the same UUID; only the bundle version changes).
13
+
14
+ 2. **Construct the input.** Workflows take a JSON input that nodes can read via `ctx.input`. Ask the user what input the workflow expects (or read `workflow.json`'s `inputSchema` if present).
15
+
16
+ 3. **Run the trigger:**
17
+ ```
18
+ zibby workflow trigger <uuid> --input '{"key":"value"}'
19
+ ```
20
+ Or use `-p key=value` for individual params (more shell-friendly than embedded JSON):
21
+ ```
22
+ zibby workflow trigger <uuid> -p ticket=ENG-1234 -p priority=high
23
+ ```
24
+
25
+ 4. **Tail the logs immediately:**
26
+ ```
27
+ zibby workflow logs <uuid> -t
28
+ ```
29
+ This streams live output. The tail auto-attaches to all currently-running executions of the workflow (docker-compose-style), so back-to-back triggers interleave naturally.
30
+
31
+ 5. **Watch for completion.** Workflow runs typically end with one of:
32
+ - `✓ Workflow completed` — success, status `completed`
33
+ - `Error: Node 'X' failed` — a node threw; status `failed`
34
+ - silent timeout — task killed by ECS; status stays `running` then becomes a zombie. Trigger again.
35
+
36
+ ## Idempotency
37
+
38
+ Use `--idempotency-key <key>` to prevent duplicate runs from a retry-prone caller:
39
+ ```
40
+ zibby workflow trigger <uuid> --input '{}' --idempotency-key job-2026-05-04-001
41
+ ```
42
+ Same key + same input within ~24h = same execution returned (no new run).
43
+
44
+ ## Multiple inputs / batch
45
+
46
+ There's no built-in batch trigger — script it from your shell:
47
+ ```
48
+ for ticket in ENG-1 ENG-2 ENG-3; do
49
+ zibby workflow trigger <uuid> -p ticket=$ticket
50
+ done
51
+ zibby workflow logs <uuid> -t # tail will show all 3 interleaved
52
+ ```
@@ -0,0 +1,10 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(zibby:*)",
5
+ "Bash(./.zibby/bin/zibby:*)",
6
+ "Bash(npm install:*)",
7
+ "Bash(node:*)"
8
+ ]
9
+ }
10
+ }
@@ -0,0 +1,56 @@
1
+ <!-- zibby-template-version: 2 -->
2
+ ---
3
+ description: Help the user build, test, and deploy Zibby agent workflows
4
+ globs:
5
+ - "**/.zibby/workflows/**"
6
+ - ".zibby.config.mjs"
7
+ - "**/workflow.json"
8
+ - "**/graph.mjs"
9
+ alwaysApply: false
10
+ ---
11
+
12
+ # Zibby agent workflows
13
+
14
+ This project contains one or more **Zibby workflows** — graphs of AI-agent-driven steps that run inside an ECS Fargate sandbox in Zibby Cloud.
15
+
16
+ ## Anatomy
17
+
18
+ ```
19
+ <workflowsBasePath>/<workflow-name>/
20
+ ├── workflow.json # name, entryClass, triggers, schemas
21
+ ├── graph.mjs # exports the graph (nodes + edges)
22
+ ├── nodes/ # one .mjs file per node
23
+ └── package.json # deps bundled at deploy time
24
+ ```
25
+
26
+ Each node exports `{ id, description, async run(ctx) }`. `ctx` provides `input`, `agent({prompt, schema})`, `shell(cmd)`, `log(...)`.
27
+
28
+ ## Common dev loop
29
+
30
+ ```
31
+ zibby workflow run <name> # one-shot local run (mirrors trigger flags)
32
+ zibby workflow deploy <name> # build + push to cloud
33
+ zibby workflow trigger <uuid> # invoke the cloud workflow
34
+ zibby workflow logs <uuid> -t # tail live logs (docker-compose style for concurrent runs)
35
+ ```
36
+
37
+ ## Adding a new node
38
+
39
+ 1. Create `<workflow>/nodes/<name>.mjs` (mirror existing `example.mjs` pattern)
40
+ 2. Register in `<workflow>/nodes/index.mjs`
41
+ 3. Wire into `<workflow>/graph.mjs` (add to `nodes` array and connect via edges)
42
+ 4. `zibby workflow run <name>` to test locally; `zibby workflow deploy` to push
43
+
44
+ ## Reference
45
+
46
+ Canonical, evolving docs: **https://docs.zibby.app/workflows**
47
+
48
+ Topics:
49
+ - Node SDK (ctx.agent / ctx.shell / ctx.log): https://docs.zibby.app/workflows/sdk
50
+ - Deploying & bundling: https://docs.zibby.app/workflows/deploying
51
+ - Triggering & inputs: https://docs.zibby.app/workflows/triggers
52
+ - Live log streaming: https://docs.zibby.app/workflows/logs
53
+ - Egress proxy / static IPs: https://docs.zibby.app/workflows/egress
54
+ - Security & secrets: https://docs.zibby.app/workflows/security
55
+
56
+ Prefer the docs URL for anything you're unsure about — they're updated more frequently than these rules.
@@ -0,0 +1,43 @@
1
+ {
2
+ "templateVersion": 3,
3
+ "description": "Canonical agent helpers for Zibby workflows. Each shipped file carries '<!-- zibby-template-version: N -->' for idempotent upgrades. Bumped on breaking content changes.",
4
+ "agents": {
5
+ "claude": {
6
+ "files": [
7
+ ".claude/commands/zibby-add-node.md",
8
+ ".claude/commands/zibby-deploy.md",
9
+ ".claude/commands/zibby-trigger.md",
10
+ ".claude/commands/zibby-tail.md",
11
+ ".claude/commands/zibby-debug.md",
12
+ ".claude/commands/zibby-delete.md",
13
+ ".claude/commands/zibby-list.md",
14
+ ".claude/commands/zibby-static-ip.md",
15
+ ".claude/commands/zibby-test-run.md",
16
+ ".claude/commands/zibby-test-write.md",
17
+ ".claude/commands/zibby-test-generate.md",
18
+ ".claude/commands/zibby-test-debug.md",
19
+ ".claude/agents/zibby-workflow-builder.md",
20
+ ".claude/agents/zibby-test-author.md"
21
+ ],
22
+ "writeOnceFiles": [
23
+ ".claude/settings.json"
24
+ ],
25
+ "rootBlock": {
26
+ "target": "CLAUDE.md",
27
+ "source": "agents-md-block.md"
28
+ }
29
+ },
30
+ "cursor": {
31
+ "files": [
32
+ ".cursor/rules/zibby-workflows.mdc"
33
+ ]
34
+ },
35
+ "codex": {
36
+ "files": [],
37
+ "rootBlock": {
38
+ "target": "AGENTS.md",
39
+ "source": "agents-md-block.md"
40
+ }
41
+ }
42
+ }
43
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zibby/cli",
3
- "version": "0.1.90",
3
+ "version": "0.1.95",
4
4
  "description": "Zibby CLI - Test automation generator and runner",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "scripts": {
10
10
  "build": "node ../scripts/build.mjs --extra-dirs bin",
11
- "test": "vitest run test/auth*.test.js test/two-layer-auth.test.js test/trigger-params.test.js test/trigger-helpers.test.js test/deploy-helpers.test.js test/cli-namespace-consistency.test.js test/cli-workflow-subcommands.test.js test/run-bundle-core-import.test.js test/start-respects-config.test.js test/sse-backoff.test.js test/sse-reconnect-loop.test.js test/run-helpers.test.js test/sse-parser.test.js",
11
+ "test": "vitest run test/auth*.test.js test/two-layer-auth.test.js test/trigger-params.test.js test/trigger-helpers.test.js test/deploy-helpers.test.js test/deploy-bundles-user-config.test.js test/run-loads-user-config.test.js test/env-helpers.test.js test/env-cli.test.js test/cli-namespace-consistency.test.js test/cli-workflow-subcommands.test.js test/run-bundle-core-import.test.js test/start-respects-config.test.js test/sse-backoff.test.js test/sse-reconnect-loop.test.js test/run-helpers.test.js test/sse-parser.test.js",
12
12
  "test:unit": "vitest run src/",
13
13
  "test:auth": "vitest run test/auth*.test.js test/two-layer-auth.test.js",
14
14
  "lint": "eslint .",
@@ -33,8 +33,8 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@aws-sdk/client-sqs": "^3.1038.0",
36
- "@zibby/agent-workflow": "^0.1.2",
37
- "@zibby/core": "^0.1.48",
36
+ "@zibby/agent-workflow": "^0.2.0",
37
+ "@zibby/core": "^0.2.0",
38
38
  "@zibby/memory": "^0.1.5",
39
39
  "@zibby/skills": "^0.1.11",
40
40
  "adm-zip": "^0.5.17",