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.
- package/autark.mjs +3 -1
- 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
|
-
|
|
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