aiblueprint-cli 1.4.48 → 1.4.49
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 +32 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -36971,6 +36971,38 @@ backupCmd.command("load").description("Load a previous backup interactively").ac
|
|
|
36971
36971
|
agentsFolder: parentOptions.agentsFolder
|
|
36972
36972
|
});
|
|
36973
36973
|
});
|
|
36974
|
+
var agentsCmd = program2.command("agents").description("Manage AIBlueprint configurations under ~/.agents (with ~/.claude symlinks)").option("-f, --folder <path>", "Specify custom Claude Code folder path (default: ~/.claude) - alias for --claudeCodeFolder").option("--claudeCodeFolder <path>", "Specify custom Claude Code folder path (default: ~/.claude)").option("--agentsFolder <path>", "Specify custom agents folder path (default: ~/.agents)");
|
|
36975
|
+
var agentsProCmd = agentsCmd.command("pro").description("Manage AIBlueprint CLI Premium features");
|
|
36976
|
+
agentsProCmd.command("activate [token]").description("Activate AIBlueprint CLI Premium with your access token").action((token) => {
|
|
36977
|
+
proActivateCommand(token);
|
|
36978
|
+
});
|
|
36979
|
+
agentsProCmd.command("status").description("Check your Premium token status").action(() => {
|
|
36980
|
+
proStatusCommand();
|
|
36981
|
+
});
|
|
36982
|
+
agentsProCmd.command("setup").description("Install premium configurations into ~/.agents and symlink into ~/.claude").action((options, command) => {
|
|
36983
|
+
const parentOptions = command.parent.parent.opts();
|
|
36984
|
+
const claudeCodeFolder = parentOptions.claudeCodeFolder || parentOptions.folder;
|
|
36985
|
+
proSetupCommand({
|
|
36986
|
+
folder: claudeCodeFolder,
|
|
36987
|
+
agentsFolder: parentOptions.agentsFolder
|
|
36988
|
+
});
|
|
36989
|
+
});
|
|
36990
|
+
agentsProCmd.command("update").description("Update premium configurations").action((options, command) => {
|
|
36991
|
+
const parentOptions = command.parent.parent.opts();
|
|
36992
|
+
const claudeCodeFolder = parentOptions.claudeCodeFolder || parentOptions.folder;
|
|
36993
|
+
proUpdateCommand({
|
|
36994
|
+
folder: claudeCodeFolder,
|
|
36995
|
+
agentsFolder: parentOptions.agentsFolder
|
|
36996
|
+
});
|
|
36997
|
+
});
|
|
36998
|
+
agentsProCmd.command("sync").description("Sync premium configurations with selective update").action((options, command) => {
|
|
36999
|
+
const parentOptions = command.parent.parent.opts();
|
|
37000
|
+
const claudeCodeFolder = parentOptions.claudeCodeFolder || parentOptions.folder;
|
|
37001
|
+
proSyncCommand({
|
|
37002
|
+
folder: claudeCodeFolder,
|
|
37003
|
+
agentsFolder: parentOptions.agentsFolder
|
|
37004
|
+
});
|
|
37005
|
+
});
|
|
36974
37006
|
var openclawCmd = program2.command("openclaw").description("OpenClaw configuration commands").option("-f, --folder <path>", "Specify custom OpenClaw folder path (default: ~/.openclaw)");
|
|
36975
37007
|
var openclawProCmd = openclawCmd.command("pro").description("Manage OpenClaw Pro features");
|
|
36976
37008
|
openclawProCmd.command("activate [token]").description("Activate OpenClaw Pro with your access token").action((token) => {
|