zuppaclaude 1.3.13 → 1.3.15
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/lib/components/claudehud.js +12 -1
- package/lib/installer.js +1 -1
- package/lib/uninstaller.js +1 -1
- package/package.json +1 -1
|
@@ -78,7 +78,18 @@ class ClaudeHUDInstaller {
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
this.logger.success('Claude HUD setup script created');
|
|
81
|
-
|
|
81
|
+
|
|
82
|
+
// Show setup instructions directly
|
|
83
|
+
console.log('');
|
|
84
|
+
console.log(' \x1b[36m┌─────────────────────────────────────────────────────┐\x1b[0m');
|
|
85
|
+
console.log(' \x1b[36m│\x1b[0m Run these commands inside Claude Code: \x1b[36m│\x1b[0m');
|
|
86
|
+
console.log(' \x1b[36m│\x1b[0m \x1b[36m│\x1b[0m');
|
|
87
|
+
console.log(' \x1b[36m│\x1b[0m 1. /plugin marketplace add jarrodwatts/claude-hud \x1b[36m│\x1b[0m');
|
|
88
|
+
console.log(' \x1b[36m│\x1b[0m 2. /plugin install claude-hud \x1b[36m│\x1b[0m');
|
|
89
|
+
console.log(' \x1b[36m│\x1b[0m 3. /claude-hud:setup \x1b[36m│\x1b[0m');
|
|
90
|
+
console.log(' \x1b[36m└─────────────────────────────────────────────────────┘\x1b[0m');
|
|
91
|
+
console.log('');
|
|
92
|
+
|
|
82
93
|
return true;
|
|
83
94
|
} catch (error) {
|
|
84
95
|
this.logger.error(`Failed to install Claude HUD: ${error.message}`);
|
package/lib/installer.js
CHANGED
|
@@ -98,7 +98,7 @@ class Installer {
|
|
|
98
98
|
zaiApiKey = this.settings.decodeApiKey(existingSettings.zaiApiKey);
|
|
99
99
|
this.logger.info('Using saved Z.AI API key');
|
|
100
100
|
} else {
|
|
101
|
-
installClaudeZ = await this.prompts.confirm('Install Claude-Z (z.ai backend)?',
|
|
101
|
+
installClaudeZ = await this.prompts.confirm('Install Claude-Z (z.ai backend)?', true);
|
|
102
102
|
if (installClaudeZ) {
|
|
103
103
|
zaiApiKey = await this.prompts.password('Enter your Z.AI API key:');
|
|
104
104
|
}
|
package/lib/uninstaller.js
CHANGED
|
@@ -40,7 +40,7 @@ class Uninstaller {
|
|
|
40
40
|
console.log('');
|
|
41
41
|
|
|
42
42
|
// Confirm uninstallation
|
|
43
|
-
const confirm = await this.prompts.confirm('Are you sure you want to uninstall ZuppaClaude?',
|
|
43
|
+
const confirm = await this.prompts.confirm('Are you sure you want to uninstall ZuppaClaude?', true);
|
|
44
44
|
if (!confirm) {
|
|
45
45
|
this.logger.info('Uninstallation cancelled');
|
|
46
46
|
this.prompts.close();
|