@stackbone/cli 0.1.0-alpha.3 → 0.1.0-alpha.4
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 +23 -0
- package/main.js +880 -230
- package/package.json +1 -1
- package/stackbone-cli-0.1.0-alpha.4.tgz +0 -0
- package/stackbone-cli-0.1.0-alpha.3.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ 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.4] - 2026-05-18
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Breaking — `--template` renamed to `--starter`.** The `stackbone init`
|
|
15
|
+
command now reads `--starter <slug>` and scaffolds from `starters/<slug>/`,
|
|
16
|
+
a directory subtreed from one of the public
|
|
17
|
+
`github.com/stackbone/starter-<slug>` repos (10 slugs: `hello-world`, `ai`,
|
|
18
|
+
`rag`, `db`, `storage`, `queues`, `hitl`, `secrets`, `prompts`, `config`).
|
|
19
|
+
The legacy `--template` flag is recognised solely to emit the migration
|
|
20
|
+
message `--template was renamed to --starter; rerun with --starter <slug>`
|
|
21
|
+
and exit non-zero. The interactive picker now groups starters by
|
|
22
|
+
`stackbone.category` (`Core` first, then `Capabilities`) and lists ten
|
|
23
|
+
entries (the three bundled `hello-world` / `workflow` / `autonomous`
|
|
24
|
+
templates are gone — `workflow` and `autonomous` were mocks).
|
|
25
|
+
`.stackbone/project.json` writes `starter: <slug>`; the field is read-compat
|
|
26
|
+
with the legacy `template:` key (one release) and rewritten on next
|
|
27
|
+
`init`/`link`. The bundled `apps/cli/src/templates/` directory is deleted
|
|
28
|
+
in favour of the subtreed `starters/` layout. Public exports of
|
|
29
|
+
`services/scaffolding.ts` were renamed: `TEMPLATES` → `STARTERS`,
|
|
30
|
+
`TemplateChoice` → `StarterChoice`, `parseTemplateId` → `parseStarterId`,
|
|
31
|
+
`renderTemplate` → `renderStarter`.
|
|
32
|
+
|
|
10
33
|
## [0.1.0-alpha.3] - 2026-05-15
|
|
11
34
|
|
|
12
35
|
### Added
|