autark-cli 0.5.5 → 0.5.6

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.
Files changed (2) hide show
  1. package/autark.mjs +3 -1
  2. package/package.json +1 -1
package/autark.mjs CHANGED
@@ -517,7 +517,9 @@ async function refreshRuntimeFiles() {
517
517
  }
518
518
 
519
519
  async function refreshSkills() {
520
- const res = await spawnSync('pnpm', ['dlx', '--silent', 'skills', 'add', 'kiluazen/kstack', '-s', SKILL_NAMES.join(','), '-y', '-g'])
520
+ // skills CLI switched from `-s name,name` to positional `name name`.
521
+ // The old comma-separated form silently matches nothing.
522
+ const res = await spawnSync('pnpm', ['dlx', '--silent', 'skills', 'add', 'kiluazen/kstack', ...SKILL_NAMES, '-y', '-g'])
521
523
  if (res.status !== 0) throw new Error(`kstack skills install failed`)
522
524
  }
523
525
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autark-cli",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "description": "CLI for autark \u2014 hypothesis-driven product runbooks. Track products, hypotheses, runs, and actions from the terminal.",
5
5
  "type": "module",
6
6
  "license": "MIT",