aiblueprint-cli 1.2.0 → 1.2.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.
Files changed (3) hide show
  1. package/README.md +38 -0
  2. package/dist/cli.js +13 -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
@@ -34939,11 +34939,24 @@ async function proSetupCommand(options = {}) {
34939
34939
  claudeCodeFolder: claudeDir
34940
34940
  });
34941
34941
  spinner.stop("Premium configurations installed");
34942
+ spinner.start("Setting up shell shortcuts...");
34943
+ await setupShellShortcuts();
34944
+ spinner.stop("Shell shortcuts configured");
34945
+ spinner.start("Updating settings.json...");
34946
+ await updateSettings({
34947
+ commandValidation: true,
34948
+ customStatusline: true,
34949
+ notificationSounds: true,
34950
+ postEditTypeScript: true
34951
+ }, claudeDir);
34952
+ spinner.stop("Settings.json updated");
34942
34953
  f2.success("✅ Setup complete!");
34943
34954
  f2.info("Installed:");
34944
34955
  f2.info(" • Free commands + Premium commands");
34945
34956
  f2.info(" • Free agents + Premium agents");
34946
34957
  f2.info(" • Premium statusline ONLY (advanced)");
34958
+ f2.info(" • Shell shortcuts (cc, ccc)");
34959
+ f2.info(" • Settings.json with hooks and statusline");
34947
34960
  $e(source_default.green("\uD83D\uDE80 Ready to use!"));
34948
34961
  } catch (error) {
34949
34962
  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.1",
4
4
  "description": "AIBlueprint CLI for setting up Claude Code configurations",
5
5
  "author": "AIBlueprint",
6
6
  "license": "MIT",