@stackbone/cli 0.1.0-alpha.6 → 0.1.0-alpha.8
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 +27 -0
- package/README.md +2 -2
- package/main.js +10500 -6266
- package/migrations/0005_stackbone_viewer.sql +11 -0
- package/migrations/0010_agent_config.sql +32 -0
- package/migrations/0011_secrets_revoke_viewer.sql +26 -0
- package/migrations/0012_queue_jobs.sql +50 -0
- package/migrations/0013_prompts.sql +74 -0
- package/migrations/0014_rag.sql +79 -0
- package/package.json +6 -1
- package/stackbone-cli-0.1.0-alpha.8.tgz +0 -0
- package/stackbone-cli-0.1.0-alpha.6.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,33 @@ 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.7] - 2026-05-26
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- The Claude Code skill bundle that `stackbone init` / `stackbone link`
|
|
15
|
+
writes is now maintained as a standalone file at
|
|
16
|
+
`apps/wiki/public/content/skills/claude-code/SKILL.md` — the same file
|
|
17
|
+
the CLI installs at `.claude/skills/stackbone/SKILL.md`, modulo the
|
|
18
|
+
`{{cliVersion}}`, `{{controlPlaneUrl}}` and `{{organizationSlug}}`
|
|
19
|
+
placeholders. The wiki page at `/docs/coding-agents/claude-code`
|
|
20
|
+
auto-embeds it between `<!-- skill-embed-start: ... -->` markers.
|
|
21
|
+
A new `cli:sync-skills` Nx target (chained from `cli:build`, and a
|
|
22
|
+
dependency of `wiki:manifest`) regenerates both
|
|
23
|
+
`apps/cli/src/skills/templates.generated.ts` and the wiki embed from
|
|
24
|
+
the source SKILL.md. `pnpm cli:sync-skills --check` fails CI if a
|
|
25
|
+
placeholder is missing or if either output drifts from the source, so
|
|
26
|
+
the SKILL.md a human reviews in the wiki is byte-equal to the one the
|
|
27
|
+
CLI bundle ships.
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- `renderClaudeSkill` no longer interprets `$` in interpolated values as
|
|
32
|
+
a `String.replace` substitution pattern (`$&`, `$'`, `$$`, …). Slugs or
|
|
33
|
+
URLs containing a literal `$` were previously silently corrupted in the
|
|
34
|
+
installed `SKILL.md`. Covered by a new unit test in
|
|
35
|
+
`assembler.spec.ts`.
|
|
36
|
+
|
|
10
37
|
## [0.1.0-alpha.6] - 2026-05-18
|
|
11
38
|
|
|
12
39
|
### Fixed
|
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ cd my-agent
|
|
|
14
14
|
npx @stackbone/cli@alpha dev
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
That's it. `init` scaffolds a new agent project (templates + Claude skill); `dev` runs a local control-plane emulator with Stackbone Studio at `http://localhost:4242` so you can iterate without
|
|
17
|
+
That's it. `init` scaffolds a new agent project (templates + Claude skill); `dev` runs a local control-plane emulator with Stackbone Studio at `http://localhost:4242` so you can iterate without publishing.
|
|
18
18
|
|
|
19
19
|
## Commands
|
|
20
20
|
|
|
@@ -22,7 +22,7 @@ That's it. `init` scaffolds a new agent project (templates + Claude skill); `dev
|
|
|
22
22
|
| ---------------------------- | ---------------------------------------------------------------------- |
|
|
23
23
|
| `stackbone init [name]` | Scaffold a new Stackbone project from a template. |
|
|
24
24
|
| `stackbone dev` | Run the local control-plane emulator + Stackbone Studio. |
|
|
25
|
-
| `stackbone
|
|
25
|
+
| `stackbone publish` | Build, push, and publish the current agent to Stackbone runtime. |
|
|
26
26
|
| `stackbone login` / `logout` | Authenticate the CLI via the device-code flow (RFC 8628). |
|
|
27
27
|
| `stackbone whoami` | Show the active user and organization. |
|
|
28
28
|
| `stackbone current` | Print the organization currently linked to this session. |
|