fleetbo-cockpit-cli 1.0.90 → 1.0.92
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 +17 -22
- 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[90mClick the \x1b[32m[+]\x1b[90m button in the Terminal top-right bar \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
|
}
|
|
@@ -561,10 +556,10 @@ if (command === 'alex') {
|
|
|
561
556
|
console.log('');
|
|
562
557
|
console.log(' \x1b[36m CAPABILITIES\x1b[0m');
|
|
563
558
|
console.log(' \x1b[90m ─────────────────────────────────────────────────────\x1b[0m');
|
|
564
|
-
console.log(' \x1b[1m
|
|
565
|
-
console.log(' \x1b[1m
|
|
566
|
-
console.log(' \x1b[1m
|
|
567
|
-
console.log(' \x1b[1m
|
|
559
|
+
console.log(' \x1b[1m Hardware\x1b[0m\x1b[90m Camera · Scanner · GPS · Biometrics\x1b[0m');
|
|
560
|
+
console.log(' \x1b[1m High-Perf\x1b[0m\x1b[90m Video Feed · Swipe Deck · Audio\x1b[0m');
|
|
561
|
+
console.log(' \x1b[1m Sovereign\x1b[0m\x1b[90m Form + Photo + Save-to-Cloud\x1b[0m');
|
|
562
|
+
console.log(' \x1b[1m Fleetbo View\x1b[0m\x1b[90m Full native tab (120 FPS)\x1b[0m');
|
|
568
563
|
console.log(' \x1b[90m ─────────────────────────────────────────────────────\x1b[0m');
|
|
569
564
|
|
|
570
565
|
// TRIGGER WORDS
|