@stackbone/cli 0.1.0-alpha.14 → 0.1.0-alpha.15
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 +17 -0
- package/README.md +19 -16
- package/main.js +10167 -3838
- package/migrations/0021_trigger_subscriptions.sql +67 -0
- package/package.json +1 -1
- package/stackbone-cli-0.1.0-alpha.15.tgz +0 -0
- package/runtime-deps/@stackbone/agent-server/index.js +0 -52
- package/stackbone-cli-0.1.0-alpha.14.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ 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.15] - 2026-07-01
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **`stackbone init` now links every workspace to the control plane, and `add`
|
|
15
|
+
no longer touches the network.** The workspace is the linked unit: `init`
|
|
16
|
+
registers the workspace's identity (an agent named after the workspace) and
|
|
17
|
+
writes the single `.stackbone/project.json` for EVERY `--with` kind — `empty`
|
|
18
|
+
and `workflow` included — that `dev`, `publish` and the management commands
|
|
19
|
+
read. Because of this, `init` now needs a signed-in session for every kind (the
|
|
20
|
+
fully-offline `init` path is gone — run `stackbone login` first). In exchange,
|
|
21
|
+
`stackbone add agent` and `add workflow-agent` are now 100% offline: the pieces
|
|
22
|
+
you add are members of the already-linked workspace, not separate control-plane
|
|
23
|
+
registrations, so they no longer register an agent or write `project.json`.
|
|
24
|
+
This fixes the confusing flow where `init` left a workspace unlinked and
|
|
25
|
+
`stackbone dev` then failed with "No project linked — run `stackbone init`".
|
|
26
|
+
|
|
10
27
|
## [0.1.0-alpha.14] - 2026-06-25
|
|
11
28
|
|
|
12
29
|
### Removed
|
package/README.md
CHANGED
|
@@ -9,28 +9,31 @@ The CLI for [Stackbone](https://stackbone.ai) — the marketplace and runtime fo
|
|
|
9
9
|
No install required — invoke the CLI through `npx`:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx @stackbone/cli@alpha
|
|
13
|
-
|
|
12
|
+
npx @stackbone/cli@alpha login
|
|
13
|
+
npx @stackbone/cli@alpha init my-workspace
|
|
14
|
+
cd my-workspace && npm install
|
|
14
15
|
npx @stackbone/cli@alpha dev
|
|
15
16
|
```
|
|
16
17
|
|
|
17
|
-
That's it. `init` scaffolds a new
|
|
18
|
+
That's it. `init` scaffolds a new workspace shell (agents + workflows + coding-agent skills) and links it to your organization, so you sign in first; `dev` boots the whole workspace locally — Postgres, Redis, MinIO and Stackbone Studio at `http://localhost:4242` — so you can iterate without publishing.
|
|
18
19
|
|
|
19
20
|
## Commands
|
|
20
21
|
|
|
21
|
-
| Command
|
|
22
|
-
|
|
|
23
|
-
| `stackbone init [name]`
|
|
24
|
-
| `stackbone
|
|
25
|
-
| `stackbone
|
|
26
|
-
| `stackbone
|
|
27
|
-
| `stackbone
|
|
28
|
-
| `stackbone
|
|
29
|
-
| `stackbone
|
|
30
|
-
| `stackbone
|
|
31
|
-
| `stackbone
|
|
32
|
-
| `stackbone
|
|
33
|
-
| `stackbone
|
|
22
|
+
| Command | What it does |
|
|
23
|
+
| ----------------------------- | ---------------------------------------------------------------------- |
|
|
24
|
+
| `stackbone init [name]` | Scaffold a new workspace shell and link it to your org (needs login). |
|
|
25
|
+
| `stackbone add <kind> <name>` | Add an agent / workflow / workflow-agent to the workspace (offline). |
|
|
26
|
+
| `stackbone dev` | Boot the whole workspace locally + Stackbone Studio. |
|
|
27
|
+
| `stackbone workflows <verb>` | List, inspect the schema of, or start the install's workflows. |
|
|
28
|
+
| `stackbone publish` | Compile every agent + workflow and pack the workspace bundle. |
|
|
29
|
+
| `stackbone login` / `logout` | Authenticate the CLI via the device-code flow (RFC 8628). |
|
|
30
|
+
| `stackbone whoami` | Show the active user and organization. |
|
|
31
|
+
| `stackbone current` | Print the organization currently linked to this session. |
|
|
32
|
+
| `stackbone link` | Link the current directory to an existing organization + agent. |
|
|
33
|
+
| `stackbone list` | List organizations the current user owns. |
|
|
34
|
+
| `stackbone metadata` | Agent-friendly snapshot of the workspace state. |
|
|
35
|
+
| `stackbone db <subcmd>` | Manage the local emulator database (migrations, queries). |
|
|
36
|
+
| `stackbone docs <topic>` | Print Stackbone documentation inline. Run with no args to list topics. |
|
|
34
37
|
|
|
35
38
|
Run any command with `--help` for the full flag reference, or `npx @stackbone/cli@alpha docs cli` for the inline documentation.
|
|
36
39
|
|