aiblueprint-cli 1.2.1 → 1.2.2
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
|
@@ -33368,6 +33368,7 @@ async function setupCommand(params = {}) {
|
|
|
33368
33368
|
"customStatusline",
|
|
33369
33369
|
"aiblueprintCommands",
|
|
33370
33370
|
"aiblueprintAgents",
|
|
33371
|
+
"aiblueprintSkills",
|
|
33371
33372
|
"notificationSounds",
|
|
33372
33373
|
"codexSymlink",
|
|
33373
33374
|
"openCodeSymlink"
|
|
@@ -33405,6 +33406,11 @@ async function setupCommand(params = {}) {
|
|
|
33405
33406
|
name: "AIBlueprint agents - Specialized AI agents",
|
|
33406
33407
|
checked: true
|
|
33407
33408
|
},
|
|
33409
|
+
{
|
|
33410
|
+
value: "aiblueprintSkills",
|
|
33411
|
+
name: "AIBlueprint Skills - Reusable skill modules for specialized tasks",
|
|
33412
|
+
checked: false
|
|
33413
|
+
},
|
|
33408
33414
|
{
|
|
33409
33415
|
value: "notificationSounds",
|
|
33410
33416
|
name: "Notification sounds - Audio alerts for events",
|
|
@@ -33440,6 +33446,7 @@ async function setupCommand(params = {}) {
|
|
|
33440
33446
|
customStatusline: features.includes("customStatusline"),
|
|
33441
33447
|
aiblueprintCommands: features.includes("aiblueprintCommands"),
|
|
33442
33448
|
aiblueprintAgents: features.includes("aiblueprintAgents"),
|
|
33449
|
+
aiblueprintSkills: features.includes("aiblueprintSkills"),
|
|
33443
33450
|
notificationSounds: features.includes("notificationSounds"),
|
|
33444
33451
|
postEditTypeScript: features.includes("postEditTypeScript"),
|
|
33445
33452
|
codexSymlink: features.includes("codexSymlink"),
|
|
@@ -33532,6 +33539,31 @@ async function setupCommand(params = {}) {
|
|
|
33532
33539
|
}
|
|
33533
33540
|
s.stop("Agents installed");
|
|
33534
33541
|
}
|
|
33542
|
+
if (options.aiblueprintSkills) {
|
|
33543
|
+
s.start("Setting up AIBlueprint Skills");
|
|
33544
|
+
if (useGitHub) {
|
|
33545
|
+
const testSkillsUrl = `${GITHUB_RAW_BASE2}/skills/create-prompt/SKILL.md`;
|
|
33546
|
+
try {
|
|
33547
|
+
const testResponse = await fetch(testSkillsUrl);
|
|
33548
|
+
if (testResponse.ok) {
|
|
33549
|
+
await downloadDirectoryFromGitHub("skills", path7.join(claudeDir, "skills"));
|
|
33550
|
+
s.stop("Skills installed");
|
|
33551
|
+
} else {
|
|
33552
|
+
s.stop("Skills not available in repository");
|
|
33553
|
+
}
|
|
33554
|
+
} catch {
|
|
33555
|
+
s.stop("Skills not available in repository");
|
|
33556
|
+
}
|
|
33557
|
+
} else {
|
|
33558
|
+
const skillsSourcePath = path7.join(sourceDir, "skills");
|
|
33559
|
+
if (await import_fs_extra5.default.pathExists(skillsSourcePath)) {
|
|
33560
|
+
await import_fs_extra5.default.copy(skillsSourcePath, path7.join(claudeDir, "skills"), { overwrite: true });
|
|
33561
|
+
s.stop("Skills installed");
|
|
33562
|
+
} else {
|
|
33563
|
+
s.stop("Skills not available in local repository");
|
|
33564
|
+
}
|
|
33565
|
+
}
|
|
33566
|
+
}
|
|
33535
33567
|
if (options.notificationSounds) {
|
|
33536
33568
|
s.start("Setting up notification sounds");
|
|
33537
33569
|
if (useGitHub) {
|