@stackbone/cli 0.1.0-alpha.5 → 0.1.0-alpha.7
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 +39 -0
- package/README.md +2 -2
- package/main.js +99569 -9561
- package/migrations/0010_agent_config.sql +32 -0
- package/package.json +3 -1
- package/stackbone-cli-0.1.0-alpha.7.tgz +0 -0
- package/stackbone-cli-0.1.0-alpha.5.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,45 @@ 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
|
+
|
|
37
|
+
## [0.1.0-alpha.6] - 2026-05-18
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
|
|
41
|
+
- Git Bash / MSYS / MinGW on Windows are no longer caught by the native
|
|
42
|
+
Windows guard. `isWindowsNative` now also inspects
|
|
43
|
+
`process.env.MSYSTEM` (`MINGW64`, `MINGW32`, `MSYS`), which Git for
|
|
44
|
+
Windows sets in every Git Bash session — including the one VS Code's
|
|
45
|
+
integrated terminal spawns. The banner and `unsupported_platform`
|
|
46
|
+
envelope still steer PowerShell / CMD users to WSL2, with Git Bash now
|
|
47
|
+
listed alongside as a supported alternative.
|
|
48
|
+
|
|
10
49
|
## [0.1.0-alpha.5] - 2026-05-18
|
|
11
50
|
|
|
12
51
|
### Added
|
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. |
|