@stackbone/cli 0.1.0-alpha.10 → 0.1.0-alpha.12

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,60 @@ 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.12] - 2026-06-17
11
+
12
+ ### Added
13
+
14
+ - **Full agent-runtime command surface.** The CLI can now drive a running
15
+ agent end to end against the Studio endpoints, with one command group per
16
+ capability: `runs` and `config`, `queues`
17
+ (`list`/`jobs`/`retry`/`discard`/`peek`/`purge`/`push`), `logs`, `storage`,
18
+ `rag`, `secrets`, `hitl`, `openrouter`, `db`, `prompts`, `playground`,
19
+ `agents`, and `contract` (`show`/`schema`/`capabilities`/`validate`).
20
+ - `stackbone organization use` switches the active organization for subsequent
21
+ commands.
22
+ - `stackbone db migrate up`/`status` now prompt to create a `drizzle-kit`
23
+ rename when run on an interactive terminal, instead of silently guessing.
24
+ - `stackbone playground` streams a run's steps live as they happen during an
25
+ invocation.
26
+
27
+ ### Changed
28
+
29
+ - Studio commands now route to the **local emulator** for `kind=local` agents
30
+ (resolved from the dev statefile) instead of hitting the control plane, which
31
+ has no boot bundle for local installs.
32
+ - Unified the cross-cutting conventions (flags, output, error handling)
33
+ across every agent-runtime surface so they behave consistently.
34
+ - The HTTP adapter gained `put`/`delete` plus a Studio-target resolver, and
35
+ transfer helpers for SSE, multipart uploads and presigned downloads.
36
+
37
+ ### Removed
38
+
39
+ - `stackbone db studio` — the embedded drizzle-kit studio command.
40
+
41
+ ### Fixed
42
+
43
+ - `stackbone db migrate up`/`status` discover the dev Postgres URL instead of
44
+ failing to connect.
45
+ - `queues peek`/`purge` are now scoped to a single handler (logical queue)
46
+ rather than the whole physical queue.
47
+
48
+ ## [0.1.0-alpha.11] - 2026-06-12
49
+
50
+ ### Fixed
51
+
52
+ - `stackbone dev` (and the self-host runtime) no longer crash on boot with
53
+ `BUNDLE_IMPORT_FAILED` when an agent splits its code across files and uses
54
+ idiomatic extensionless relative imports (e.g. `import { x } from './schema'`).
55
+ The dev/self-host runner imports the creator's raw TypeScript through Node's
56
+ native type-stripping, whose ESM resolver never adds a file extension — so a
57
+ multi-file agent that ran fine once published would crash locally. The
58
+ generated dev entry now registers a module-resolution hook that mirrors
59
+ esbuild's TypeScript resolution (the same `stackbone publish` relies on): it
60
+ adds the missing `.ts`/`.tsx`/`.mts`/`.cts` extension (and the directory
61
+ `index` form), and applies the NodeNext `./x.js` → `./x.ts` rewrite. Dev and
62
+ self-host now resolve modules exactly like a published agent.
63
+
10
64
  ## [0.1.0-alpha.10] - 2026-06-12
11
65
 
12
66
  ### Fixed