aiblueprint-cli 1.1.0 → 1.1.1
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.js +7 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -33640,12 +33640,16 @@ claudeCodeCmd.command("setup").description("Setup Claude Code configuration with
|
|
|
33640
33640
|
const parentOptions = command.parent.opts();
|
|
33641
33641
|
setupCommand(parentOptions.folder, parentOptions.skip);
|
|
33642
33642
|
});
|
|
33643
|
-
var addCmd = claudeCodeCmd.command("add").description(
|
|
33644
|
-
|
|
33643
|
+
var addCmd = claudeCodeCmd.command("add").description(`Add components to your Claude Code configuration
|
|
33644
|
+
` + `Examples:
|
|
33645
|
+
` + ` aiblueprint claude-code add hook post-edit-typescript
|
|
33646
|
+
` + ` aiblueprint claude-code add commands
|
|
33647
|
+
` + " aiblueprint claude-code add commands commit");
|
|
33648
|
+
addCmd.command("hook <type>").description("Add a hook to your Claude Code configuration. Available types: post-edit-typescript").action((type, options, command) => {
|
|
33645
33649
|
const parentOptions = command.parent.parent.opts();
|
|
33646
33650
|
addHookCommand(type, { folder: parentOptions.folder });
|
|
33647
33651
|
});
|
|
33648
|
-
addCmd.command("commands [command-name]").description("
|
|
33652
|
+
addCmd.command("commands [command-name]").description("Install a Claude Code command or list all available commands (use without argument to list)").action((commandName, options, command) => {
|
|
33649
33653
|
const parentOptions = command.parent.parent.opts();
|
|
33650
33654
|
addCommandCommand(commandName, { folder: parentOptions.folder });
|
|
33651
33655
|
});
|