fleetbo-cockpit-cli 1.0.28 → 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 +23 -2
- 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,
|