@stackbone/cli 0.1.0-alpha.11 → 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,44 @@ 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
+
10
48
  ## [0.1.0-alpha.11] - 2026-06-12
11
49
 
12
50
  ### Fixed