@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 +38 -0
- package/main.js +4628 -844
- package/migrations/0001_runs.sql +1 -1
- package/migrations/0002_approvals.sql +1 -1
- package/migrations/0003_runs_is_playground_index.sql +1 -1
- package/migrations/0005_stackbone_viewer.sql +1 -1
- package/migrations/0006_secrets.sql +1 -1
- package/migrations/0007_agent_config_versions.sql +1 -1
- package/migrations/0014_rag.sql +1 -1
- package/migrations/0015_queue_jobs_lease.sql +60 -0
- package/migrations/0016_runs_job_trigger.sql +15 -0
- package/package.json +1 -1
- package/runtime-deps/@stackbone/agent-server/index.js +59 -413
- package/stackbone-cli-0.1.0-alpha.12.tgz +0 -0
- package/stackbone-cli-0.1.0-alpha.11.tgz +0 -0
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
|