skiller 0.9.8 → 0.9.9

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.
@@ -143,7 +143,7 @@ async function run() {
143
143
  .command('list [args..]', 'Run the local skills CLI list command', skillsArgsBuilder, handlers_1.listHandler)
144
144
  .command('find [args..]', 'Run the local skills CLI find command', skillsArgsBuilder, handlers_1.findHandler)
145
145
  .command('check [args..]', 'Run the local skills CLI check command', skillsArgsBuilder, handlers_1.checkHandler)
146
- .command('install [args..]', 'Run the local skills CLI install command, then skiller apply', (y) => skillsArgsBuilder(y)
146
+ .command('install [args..]', 'Restore lock-backed skills with the local skills CLI experimental_install command, then skiller apply', (y) => skillsArgsBuilder(y)
147
147
  .option('verbose', {
148
148
  type: 'boolean',
149
149
  description: 'Enable verbose logging for the follow-up apply step',
@@ -638,7 +638,7 @@ async function addHandler(argv) {
638
638
  }
639
639
  async function installHandler(argv) {
640
640
  await executeSkillsWrapper(argv['project-root'], [
641
- 'install',
641
+ 'experimental_install',
642
642
  ...(argv.args ?? []),
643
643
  ]);
644
644
  await applyAfterSkillsLifecycleStep(argv['project-root'], argv.verbose ?? false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skiller",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "description": "Skiller — apply the same rules to all coding agents",
5
5
  "main": "dist/lib.js",
6
6
  "publishConfig": {