multi-agents-cli 1.1.64 → 1.1.65
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/core/workflow/complete.js +22 -7
- package/package.json +1 -1
|
@@ -557,19 +557,34 @@ const main = async () => {
|
|
|
557
557
|
}
|
|
558
558
|
|
|
559
559
|
separator();
|
|
560
|
-
|
|
560
|
+
const boxWidth = 54;
|
|
561
|
+
const rev = (s) => `\x1b[7m${s}\x1b[27m`;
|
|
562
|
+
const pad = (s, w) => s + ' '.repeat(Math.max(0, w - s.length));
|
|
563
|
+
|
|
564
|
+
console.log('');
|
|
565
|
+
console.log(' ' + rev(' ' + pad(' What happens next', boxWidth) + ' '));
|
|
566
|
+
console.log(' ' + rev(' ' + pad('', boxWidth) + ' '));
|
|
561
567
|
|
|
562
568
|
if (nextAgent) {
|
|
563
|
-
console.log(
|
|
564
|
-
console.log(
|
|
565
|
-
console.log(` ${dim('Select: ' + nextScope + ' → ' + nextAgent)}`);
|
|
569
|
+
console.log(' ' + rev(' ' + pad(` -> Run: npm run agent`, boxWidth) + ' '));
|
|
570
|
+
console.log(' ' + rev(' ' + pad(` -> Select: ${nextScope} -> ${nextAgent}`, boxWidth) + ' '));
|
|
566
571
|
} else {
|
|
567
|
-
console.log(
|
|
572
|
+
console.log(' ' + rev(' ' + pad(` -> All agents complete - ready to deploy`, boxWidth) + ' '));
|
|
568
573
|
}
|
|
574
|
+
|
|
575
|
+
console.log(' ' + rev(' ' + pad('', boxWidth) + ' '));
|
|
576
|
+
console.log('');
|
|
569
577
|
} catch {
|
|
570
578
|
separator();
|
|
571
|
-
|
|
572
|
-
|
|
579
|
+
const boxWidth2 = 54;
|
|
580
|
+
const rev2 = (s) => `\x1b[7m${s}\x1b[27m`;
|
|
581
|
+
const pad2 = (s, w) => s + ' '.repeat(Math.max(0, w - s.length));
|
|
582
|
+
console.log('');
|
|
583
|
+
console.log(' ' + rev2(' ' + pad2(' What happens next', boxWidth2) + ' '));
|
|
584
|
+
console.log(' ' + rev2(' ' + pad2('', boxWidth2) + ' '));
|
|
585
|
+
console.log(' ' + rev2(' ' + pad2(` -> Run: npm run agent`, boxWidth2) + ' '));
|
|
586
|
+
console.log(' ' + rev2(' ' + pad2('', boxWidth2) + ' '));
|
|
587
|
+
console.log('');
|
|
573
588
|
}
|
|
574
589
|
|
|
575
590
|
console.log('\n');
|
package/package.json
CHANGED