zuppaclaude 1.3.16 → 1.3.17
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/installer.js +14 -9
- package/lib/settings.js +4 -0
- package/package.json +1 -1
package/lib/installer.js
CHANGED
|
@@ -179,15 +179,20 @@ class Installer {
|
|
|
179
179
|
|
|
180
180
|
// Save settings
|
|
181
181
|
const newSettings = {
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
182
|
+
components: {
|
|
183
|
+
superclaude: { installed: scInstalled },
|
|
184
|
+
speckit: { installed: skInstalled },
|
|
185
|
+
claude_z: {
|
|
186
|
+
installed: czInstalled,
|
|
187
|
+
api_key_encoded: zaiApiKey ? this.settings.encodeApiKey(zaiApiKey) : null
|
|
188
|
+
},
|
|
189
|
+
claude_hud: { installed: hudInstalled },
|
|
190
|
+
rclone: { installed: rcloneInstalled, remote: configuredRemote }
|
|
191
|
+
},
|
|
192
|
+
preferences: {
|
|
193
|
+
auto_update_check: true,
|
|
194
|
+
backup_configs: true
|
|
195
|
+
}
|
|
191
196
|
};
|
|
192
197
|
|
|
193
198
|
this.settings.save(newSettings);
|
package/lib/settings.js
CHANGED
|
@@ -132,6 +132,10 @@ class Settings {
|
|
|
132
132
|
console.log(' API Key: [configured]');
|
|
133
133
|
}
|
|
134
134
|
console.log(` Claude HUD: ${c.claude_hud?.installed ? 'Yes' : 'No'}`);
|
|
135
|
+
console.log(` rclone: ${c.rclone?.installed ? 'Yes' : 'No'}`);
|
|
136
|
+
if (c.rclone?.remote) {
|
|
137
|
+
console.log(` Remote: ${c.rclone.remote}`);
|
|
138
|
+
}
|
|
135
139
|
|
|
136
140
|
const p = settings.preferences || {};
|
|
137
141
|
console.log('\nPreferences:');
|