@stackbone/cli 0.1.0 → 0.2.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/CHANGELOG.md CHANGED
@@ -7,6 +7,59 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.1] - 2026-07-06
11
+
12
+ ### Added
13
+
14
+ - **Scaffold support for `streamDeepAgent`.** `detectStreamingWorkflows`
15
+ recognizes a workflow that imports and calls `streamDeepAgent` from
16
+ `@stackbone/sdk/workflow`, and the `--calls` scaffold template now emits it —
17
+ new workflow-agent scaffolds stream token-by-token into the Studio
18
+ Playground out of the box.
19
+
20
+ ### Fixed
21
+
22
+ - **`stackbone dev` boot output.** Deep-agent boot logs no longer print raw
23
+ `[deep-agents] …` lines to stdout, breaking the clack rail — they're routed
24
+ through the CLI's pino logger (only shown under `--verbose`) and
25
+ re-surfaced as one unified `Deep agents ready (…)` step. The emulator's own
26
+ boot step (an internal implementation detail) no longer gets its own
27
+ spinner line either.
28
+ - **`rag-ingest` default workflow no longer risks a workflow-VM crash.** The
29
+ staged-metadata read was a sibling helper at module scope that touched
30
+ `stackbone`, dragging the whole SDK client into the workflow bundle; it's
31
+ now inlined inside the `"use step"` function instead.
32
+
33
+ ## [0.2.0] - 2026-07-02
34
+
35
+ ### Added
36
+
37
+ - **`stackbone add deep-agent <name>` (alias `add agent`) scaffolds a deep
38
+ agent.** A single `deep-agents/<name>/index.ts` default-exporting
39
+ `defineDeepAgent(...)`, added offline into the already-linked workspace.
40
+
41
+ ### Changed
42
+
43
+ - **Scaffolding targets the deep-agents runtime.** `init` and `add` now generate
44
+ `deep-agents/<name>/index.ts` (deepagents/LangGraph on the standard
45
+ OpenAI/Anthropic chat wire) instead of the old `agent/` shell with eve channels
46
+ and hand-written HMAC auth. `stackbone dev` serves agents over the standard chat
47
+ endpoints with a playground, durable sessions (PostgresSaver checkpointer),
48
+ tool-level HITL and connector tools.
49
+
50
+ ### Removed
51
+
52
+ - **The subtreed-starters system is gone.** `starter-loader` / `starter-renderer`
53
+ and the `starters-pull` script were removed; scaffolding now renders from the
54
+ bundled templates only.
55
+
56
+ ### Fixed
57
+
58
+ - **`stackbone init` / `link` install skills on Windows.** `npx` is a `.cmd` shim
59
+ there, so spawning it without a shell failed with `spawn npx ENOENT`. The CLI now
60
+ spawns `npx` through the shell on win32 (the argv is fixed constants) and maps
61
+ cmd.exe's "is not recognized" to the same npx-not-found hint.
62
+
10
63
  ## [0.1.0] - 2026-07-01
11
64
 
12
65
  ### Added