aiblueprint-cli 1.2.0 → 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.
Files changed (3) hide show
  1. package/README.md +38 -0
  2. package/dist/cli.js +45 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -517,6 +517,44 @@ bun run dev claude-code setup --folder ./test-config
517
517
  3. Test installation: `bun run dev claude-code add commands <name>`
518
518
  4. Document in README
519
519
 
520
+ ## 💎 AIBlueprint CLI Premium
521
+
522
+ Unlock advanced features with **AIBlueprint CLI Premium**:
523
+
524
+ ### Premium Features
525
+
526
+ - ✨ **Advanced Statusline** - Enhanced git info, real-time costs, and token usage tracking
527
+ - 🚀 **Premium Commands** - Exclusive workflow automation templates
528
+ - 🤖 **Premium Agents** - Specialized AI agents for complex tasks
529
+ - 📦 **Priority Updates** - Get new features first
530
+ - 💬 **Priority Support** - Direct help when you need it
531
+
532
+ ### How to Upgrade
533
+
534
+ ```bash
535
+ # 1. Get your premium token at https://mlv.sh/claude-cli
536
+
537
+ # 2. Activate premium
538
+ aiblueprint claude-code pro activate YOUR_TOKEN
539
+
540
+ # 3. Setup premium configs
541
+ aiblueprint claude-code pro setup
542
+ ```
543
+
544
+ ### Premium Commands
545
+
546
+ ```bash
547
+ # Check premium status
548
+ aiblueprint claude-code pro status
549
+
550
+ # Update premium configs
551
+ aiblueprint claude-code pro update
552
+ ```
553
+
554
+ **Learn more:** https://mlv.sh/claude-cli
555
+
556
+ ---
557
+
520
558
  ## 📄 License
521
559
 
522
560
  MIT License - see [LICENSE](LICENSE) file for details.
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) {
@@ -34939,11 +34971,24 @@ async function proSetupCommand(options = {}) {
34939
34971
  claudeCodeFolder: claudeDir
34940
34972
  });
34941
34973
  spinner.stop("Premium configurations installed");
34974
+ spinner.start("Setting up shell shortcuts...");
34975
+ await setupShellShortcuts();
34976
+ spinner.stop("Shell shortcuts configured");
34977
+ spinner.start("Updating settings.json...");
34978
+ await updateSettings({
34979
+ commandValidation: true,
34980
+ customStatusline: true,
34981
+ notificationSounds: true,
34982
+ postEditTypeScript: true
34983
+ }, claudeDir);
34984
+ spinner.stop("Settings.json updated");
34942
34985
  f2.success("✅ Setup complete!");
34943
34986
  f2.info("Installed:");
34944
34987
  f2.info(" • Free commands + Premium commands");
34945
34988
  f2.info(" • Free agents + Premium agents");
34946
34989
  f2.info(" • Premium statusline ONLY (advanced)");
34990
+ f2.info(" • Shell shortcuts (cc, ccc)");
34991
+ f2.info(" • Settings.json with hooks and statusline");
34947
34992
  $e(source_default.green("\uD83D\uDE80 Ready to use!"));
34948
34993
  } catch (error) {
34949
34994
  if (error instanceof Error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiblueprint-cli",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "AIBlueprint CLI for setting up Claude Code configurations",
5
5
  "author": "AIBlueprint",
6
6
  "license": "MIT",