create-fleetbo-project 1.2.71 → 1.2.73
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.
|
@@ -139,12 +139,12 @@ if (command === 'alex') {
|
|
|
139
139
|
console.log('');
|
|
140
140
|
const rawMsg = aiData.message || "I'm ready.";
|
|
141
141
|
const formattedMsg = wrapText(rawMsg, 85);
|
|
142
|
-
console.log('\\x1b[32mAlex ❯\\x1b[0m
|
|
142
|
+
console.log('\\x1b[32mAlex ❯\\x1b[0m '+formattedMsg);
|
|
143
143
|
|
|
144
144
|
if (aiData.remainingConsultations !== undefined) {
|
|
145
145
|
const remaining = aiData.remainingConsultations;
|
|
146
146
|
const limit = aiData.consultationLimit || 7;
|
|
147
|
-
const tierLabel = aiData.tier === 'pro' ? 'SENIOR' : '
|
|
147
|
+
const tierLabel = aiData.tier === 'pro' ? 'SENIOR' : 'JUNIOR';
|
|
148
148
|
const percent = Math.round((remaining / limit) * 100);
|
|
149
149
|
const energyColor = percent > 20 ? '\\x1b[32m' : '\\x1b[31m';
|
|
150
150
|
console.log(\`\\x1b[36m⚡ Architect Fuel:\\x1b[0m \${energyColor}\${percent}%\x1b[0m (\${remaining}/\${limit} consultations left) [\${tierLabel}]\`);
|