@stackbone/cli 0.1.0 → 0.2.0
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 +30 -0
- package/main.js +3780 -3140
- package/package.json +1 -1
- package/runtime-deps/@stackbone/workflow-world/index.js +66 -66
- package/stackbone-cli-0.2.0.tgz +0 -0
- package/stackbone-cli-0.1.0.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.0] - 2026-07-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **`stackbone add deep-agent <name>` (alias `add agent`) scaffolds a deep
|
|
15
|
+
agent.** A single `deep-agents/<name>/index.ts` default-exporting
|
|
16
|
+
`defineDeepAgent(...)`, added offline into the already-linked workspace.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Scaffolding targets the deep-agents runtime.** `init` and `add` now generate
|
|
21
|
+
`deep-agents/<name>/index.ts` (deepagents/LangGraph on the standard
|
|
22
|
+
OpenAI/Anthropic chat wire) instead of the old `agent/` shell with eve channels
|
|
23
|
+
and hand-written HMAC auth. `stackbone dev` serves agents over the standard chat
|
|
24
|
+
endpoints with a playground, durable sessions (PostgresSaver checkpointer),
|
|
25
|
+
tool-level HITL and connector tools.
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
|
|
29
|
+
- **The subtreed-starters system is gone.** `starter-loader` / `starter-renderer`
|
|
30
|
+
and the `starters-pull` script were removed; scaffolding now renders from the
|
|
31
|
+
bundled templates only.
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- **`stackbone init` / `link` install skills on Windows.** `npx` is a `.cmd` shim
|
|
36
|
+
there, so spawning it without a shell failed with `spawn npx ENOENT`. The CLI now
|
|
37
|
+
spawns `npx` through the shell on win32 (the argv is fixed constants) and maps
|
|
38
|
+
cmd.exe's "is not recognized" to the same npx-not-found hint.
|
|
39
|
+
|
|
10
40
|
## [0.1.0] - 2026-07-01
|
|
11
41
|
|
|
12
42
|
### Added
|