@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 +54 -0
- package/main.js +4654 -808
- 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.10.tgz +0 -0
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
|