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.
@@ -557,19 +557,34 @@ const main = async () => {
557
557
  }
558
558
 
559
559
  separator();
560
- console.log(`\n ${bold('What to do next:')}`);
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(`\n ${green('→')} ${bold(nextAgent)} ${dim('(' + nextScope + ')')}`);
564
- console.log(`\n ${cyan('npm run agent')}`);
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(`\n ${cyan('npm run agent')}`);
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
- console.log(`\n ${bold('What to do next:')}\n`);
572
- console.log(` ${cyan('npm run agent')}`);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-agents-cli",
3
- "version": "1.1.64",
3
+ "version": "1.1.65",
4
4
  "description": "Multi-agent workflow orchestration for Claude Code — isolated git worktrees, structured state tracking, autonomous task chaining",
5
5
  "keywords": [
6
6
  "claude-code",