@stackbone/cli 0.2.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 +23 -0
- package/main.js +5375 -840
- package/package.json +2 -1
- package/stackbone-cli-0.2.1.tgz +0 -0
- package/stackbone-cli-0.2.0.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ 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
|
+
|
|
10
33
|
## [0.2.0] - 2026-07-02
|
|
11
34
|
|
|
12
35
|
### Added
|