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.
- package/dist/cli/commands.js +1 -1
- package/dist/cli/handlers.js +1 -1
- package/package.json +1 -1
package/dist/cli/commands.js
CHANGED
|
@@ -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..]', '
|
|
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',
|
package/dist/cli/handlers.js
CHANGED
|
@@ -638,7 +638,7 @@ async function addHandler(argv) {
|
|
|
638
638
|
}
|
|
639
639
|
async function installHandler(argv) {
|
|
640
640
|
await executeSkillsWrapper(argv['project-root'], [
|
|
641
|
-
'
|
|
641
|
+
'experimental_install',
|
|
642
642
|
...(argv.args ?? []),
|
|
643
643
|
]);
|
|
644
644
|
await applyAfterSkillsLifecycleStep(argv['project-root'], argv.verbose ?? false);
|