@stackbone/cli 0.1.0-alpha.13 → 0.1.0-alpha.14
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 +28 -0
- package/main.js +460 -6806
- package/package.json +1 -1
- package/runtime-deps/@stackbone/workflow-world/index.js +8913 -0
- package/stackbone-cli-0.1.0-alpha.14.tgz +0 -0
- package/stackbone-cli-0.1.0-alpha.13.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.0-alpha.14] - 2026-06-25
|
|
11
|
+
|
|
12
|
+
### Removed
|
|
13
|
+
|
|
14
|
+
- **`stackbone trigger` and `stackbone queues` are gone.** Both belonged to the
|
|
15
|
+
deprecated classic `/invoke` runtime. `stackbone trigger` posted to the dev
|
|
16
|
+
emulator's `/api/invoke`, which the eve runtime retired (replaced by the
|
|
17
|
+
`/api/agents/:name/chat` proxy), so the command hit a route that no longer
|
|
18
|
+
exists. `stackbone queues` drove the classic agent-jobs BullMQ dispatcher,
|
|
19
|
+
which `stackbone dev` no longer boots (it answers `503 queues_unavailable`);
|
|
20
|
+
in the new runtime async work is modelled as durable workflow runs. To
|
|
21
|
+
exercise a trigger-driven workflow locally, start it by name with
|
|
22
|
+
`stackbone workflows start <name>`. The `STACKBONE_EMULATOR_URL` env var
|
|
23
|
+
(only `stackbone trigger` read it) is removed too. The `client.queues` SDK
|
|
24
|
+
capability and Studio's Queues inspector are unaffected.
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- **`stackbone init` no longer scaffolds a workspace that fails `pnpm install`.**
|
|
29
|
+
The generated `package.json` pinned `@stackbone/workflow-world` — our durable
|
|
30
|
+
Workflow SDK World fork, a platform internal that is never published to npm —
|
|
31
|
+
so the post-init `pnpm install` 404'd ("could not resolve
|
|
32
|
+
@stackbone/workflow-world"). The CLI now ships its own esbuild-bundled copy of
|
|
33
|
+
the World and provisions it into the workspace's `node_modules` at `stackbone
|
|
34
|
+
dev` boot (the same mechanism already used for `@stackbone/agent-server`), and
|
|
35
|
+
the scaffold no longer declares the package. The public `@workflow/world` is
|
|
36
|
+
kept as the single shared base.
|
|
37
|
+
|
|
10
38
|
## [0.1.0-alpha.13] - 2026-06-25
|
|
11
39
|
|
|
12
40
|
### Changed
|