fleetbo-cockpit-cli 1.0.89 → 1.0.91
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/cli.js +13 -18
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -516,24 +516,19 @@ if (command === 'alex') {
|
|
|
516
516
|
// ═══════════════════════════════════════════════
|
|
517
517
|
if (!hasAiKey) {
|
|
518
518
|
console.log('');
|
|
519
|
-
console.log('\x1b[
|
|
520
|
-
console.log('
|
|
521
|
-
console.log('
|
|
522
|
-
console.log('
|
|
523
|
-
console.log('
|
|
524
|
-
console.log('\x1b[
|
|
525
|
-
console.log('\x1b[
|
|
526
|
-
console.log('\x1b[
|
|
527
|
-
console.log('
|
|
528
|
-
console.log('\x1b[
|
|
529
|
-
console.log('\x1b[
|
|
530
|
-
console.log('
|
|
531
|
-
console.log('\x1b[90m
|
|
532
|
-
console.log('\x1b[90m │\x1b[0m \x1b[36mhttps://console.anthropic.com/settings/keys\x1b[0m \x1b[90m│\x1b[0m');
|
|
533
|
-
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
534
|
-
console.log('\x1b[90m │\x1b[0m \x1b[90mPaste your key in\x1b[0m Workspace → Settings → AI \x1b[90m│\x1b[0m');
|
|
535
|
-
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
536
|
-
console.log('\x1b[90m └──────────────────────────────────────────────────────────┘\x1b[0m');
|
|
519
|
+
console.log('\x1b[1m\x1b[33m🧠 AI Configuration Required\x1b[0m');
|
|
520
|
+
console.log('');
|
|
521
|
+
console.log('Alex needs a powerful AI model to forge native code.');
|
|
522
|
+
console.log('Connect your own AI key to continue.');
|
|
523
|
+
console.log('');
|
|
524
|
+
console.log('\x1b[1mSupported providers:\x1b[0m');
|
|
525
|
+
console.log('\x1b[32m●\x1b[0m Google AI \x1b[90m(Gemini Pro)\x1b[0m');
|
|
526
|
+
console.log('\x1b[36mhttps://aistudio.google.com/app/apikey\x1b[0m');
|
|
527
|
+
console.log('');
|
|
528
|
+
console.log('\x1b[33m●\x1b[0m Anthropic \x1b[90m(Claude Sonnet / Opus)\x1b[0m');
|
|
529
|
+
console.log('\x1b[36mhttps://console.anthropic.com/settings/keys\x1b[0m');
|
|
530
|
+
console.log('');
|
|
531
|
+
console.log('\x1b[90m👉 Click the \x1b[32m[+]\x1b[90m button in the Terminal top-right bar\x1b[0m');
|
|
537
532
|
console.log('');
|
|
538
533
|
process.exit(0);
|
|
539
534
|
}
|