fleetbo-cockpit-cli 1.0.27 β 1.0.29
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 +25 -4
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -403,9 +403,30 @@ if (command === 'alex') {
|
|
|
403
403
|
}
|
|
404
404
|
|
|
405
405
|
process.stdout.write(' '.repeat(60) + '\r');
|
|
406
|
-
|
|
407
|
-
|
|
406
|
+
|
|
407
|
+
// 1. IDENTITΓ
|
|
408
|
+
console.log('\n\x1b[32mπ€ Alex (Architect-Worker) is online.\x1b[0m');
|
|
409
|
+
|
|
410
|
+
// 2. LE GUIDE STRATΓGIQUE (V2 - REVOLUTIONARY OS)
|
|
411
|
+
console.log('\x1b[36mβ‘ INFRASTRUCTURE PROTOCOL:\x1b[0m');
|
|
412
|
+
|
|
413
|
+
// LE CERVEAU (JS) - COMMAND & CONTROL
|
|
414
|
+
console.log(' \x1b[90mπΉ \x1b[1mStandard JS (The Brain)\x1b[0m');
|
|
415
|
+
console.log(' \x1b[90mUse for: \x1b[1mOS Management\x1b[0m\x1b[90m, Business Logic, Issuing Orders.\x1b[0m');
|
|
416
|
+
console.log(' \x1b[33mEx: Routing, Data Flow, Orchestrating Native Modules, Decision Making.\x1b[0m');
|
|
417
|
+
|
|
418
|
+
console.log('');
|
|
419
|
+
|
|
420
|
+
// LE MUSCLE (NATIF) - HEAVY DUTY
|
|
421
|
+
console.log(' \x1b[90mπΉ \x1b[1mAlex Native (The Muscle)\x1b[0m');
|
|
422
|
+
console.log(' \x1b[90mUse for: \x1b[1mNative Autonomy\x1b[0m\x1b[90m, 120FPS Rendering, Heavy I/O, Hardware Control.\x1b[0m');
|
|
423
|
+
console.log(' \x1b[33mEx: Infinite Feeds, Video Processing, Real-time Scanners, Background Threads.\x1b[0m');
|
|
424
|
+
|
|
408
425
|
console.log('');
|
|
426
|
+
|
|
427
|
+
// 3. LA PRISE DE COMMANDE
|
|
428
|
+
console.log('\x1b[32mAlex β―\x1b[0m I am ready to forge the muscle. What module are we architecting today, Pilot?');
|
|
429
|
+
console.log('');
|
|
409
430
|
|
|
410
431
|
const rl = readline.createInterface({
|
|
411
432
|
input: process.stdin,
|
|
@@ -517,8 +538,8 @@ else if (command === 'android' || command === 'ios') {
|
|
|
517
538
|
console.log(`\x1b[31mβ ACCESS DENIED: JUNIOR PILOT DETECTED\x1b[0m`);
|
|
518
539
|
console.log(`\x1b[31mββββββββββββββββββββββββββββββββββββββββββββββββββββββββ\x1b[0m`);
|
|
519
540
|
console.log(``);
|
|
520
|
-
console.log(` \x1b[33m
|
|
521
|
-
console.log(` \x1b[32m
|
|
541
|
+
console.log(` \x1b[33m This feature is locked for Junior Pilots.\x1b[0m`);
|
|
542
|
+
console.log(` \x1b[32m Upgrade to Senior on fleetbo.io to unlock Propulsion.\x1b[0m`);
|
|
522
543
|
console.log(``);
|
|
523
544
|
process.exit(1); // ArrΓͺt immΓ©diat et propre du script
|
|
524
545
|
}
|