zuppaclaude 1.3.1 → 1.3.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 (2) hide show
  1. package/lib/installer.js +18 -5
  2. package/package.json +1 -1
package/lib/installer.js CHANGED
@@ -56,15 +56,27 @@ class Installer {
56
56
  useExisting = await this.prompts.confirm('Use previous settings?', true);
57
57
  }
58
58
 
59
- // Step 2: Install SuperClaude
60
- const scInstalled = await this.superClaude.install();
59
+ // Step 2: Install SuperClaude (optional)
60
+ let installSuperClaude = true;
61
+ if (useExisting && existingSettings.superClaude !== undefined) {
62
+ installSuperClaude = existingSettings.superClaude;
63
+ } else {
64
+ installSuperClaude = await this.prompts.confirm('Install SuperClaude (30+ slash commands)?', true);
65
+ }
66
+
67
+ let scInstalled = false;
68
+ if (installSuperClaude) {
69
+ scInstalled = await this.superClaude.install();
70
+ } else {
71
+ this.logger.info('Skipping SuperClaude installation');
72
+ }
61
73
 
62
- // Step 3: Install Spec Kit
74
+ // Step 3: Install Spec Kit (optional)
63
75
  let installSpecKit = true;
64
76
  if (useExisting && existingSettings.specKit !== undefined) {
65
77
  installSpecKit = existingSettings.specKit;
66
78
  } else {
67
- installSpecKit = await this.prompts.confirm('Install Spec Kit (specify-cli)?', true);
79
+ installSpecKit = await this.prompts.confirm('Install Spec Kit (spec-driven development)?', true);
68
80
  }
69
81
 
70
82
  let skInstalled = false;
@@ -143,7 +155,7 @@ class Installer {
143
155
  this.logger.step('Step 9/9: Verifying Installation');
144
156
  console.log('');
145
157
 
146
- this.superClaude.verify();
158
+ if (installSuperClaude) this.superClaude.verify();
147
159
  if (installSpecKit) this.specKit.verify();
148
160
  this.config.verify();
149
161
  if (installClaudeZ) this.claudeZ.verify();
@@ -153,6 +165,7 @@ class Installer {
153
165
 
154
166
  // Save settings
155
167
  const newSettings = {
168
+ superClaude: installSuperClaude,
156
169
  specKit: installSpecKit,
157
170
  claudeZ: installClaudeZ,
158
171
  claudeHUD: installClaudeHUD,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zuppaclaude",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Claude Code power-up installer - SuperClaude + Spec Kit + Claude-Z + Claude HUD",
5
5
  "main": "lib/index.js",
6
6
  "bin": {