multi-agents-cli 1.1.47 → 1.1.49
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/agent.js +9 -9
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1742,9 +1742,9 @@ ${excludedUrls}
|
|
|
1742
1742
|
], rl);
|
|
1743
1743
|
|
|
1744
1744
|
if (sessionIdx === 0) {
|
|
1745
|
-
console.log('
|
|
1746
|
-
console.log(' ' + '\x1b[
|
|
1747
|
-
console.log(' ' + '\x1b[
|
|
1745
|
+
console.log('');
|
|
1746
|
+
console.log(' ' + '\x1b[7m' + ' What happens next ' + '\x1b[0m');
|
|
1747
|
+
console.log(' ' + '\x1b[1m' + '─────────────────────────────────────────────────────────' + '\x1b[0m');
|
|
1748
1748
|
console.log(` ${dim('→')} ${bold(config.ide.name || 'Your IDE')} will open at your agent workspace`);
|
|
1749
1749
|
console.log(` ${dim('→')} A new terminal window will open with Claude Code\n`);
|
|
1750
1750
|
console.log(` ${bold('Once open:')}
|
|
@@ -1765,9 +1765,9 @@ ${excludedUrls}
|
|
|
1765
1765
|
process.exit(0);
|
|
1766
1766
|
|
|
1767
1767
|
} else if (sessionIdx === 1) {
|
|
1768
|
-
console.log('
|
|
1769
|
-
console.log(' ' + '\x1b[
|
|
1770
|
-
console.log(' ' + '\x1b[
|
|
1768
|
+
console.log('');
|
|
1769
|
+
console.log(' ' + '\x1b[7m' + ' What happens next ' + '\x1b[0m');
|
|
1770
|
+
console.log(' ' + '\x1b[1m' + '─────────────────────────────────────────────────────────' + '\x1b[0m');
|
|
1771
1771
|
console.log(` ${dim('→')} ${bold(config.ide.name || 'Your IDE')} will open at your agent workspace\n`);
|
|
1772
1772
|
console.log(` ${bold('Once open:')}
|
|
1773
1773
|
`);
|
|
@@ -1784,9 +1784,9 @@ ${excludedUrls}
|
|
|
1784
1784
|
process.exit(0);
|
|
1785
1785
|
|
|
1786
1786
|
} else if (sessionIdx === 2) {
|
|
1787
|
-
console.log('
|
|
1788
|
-
console.log(' ' + '\x1b[
|
|
1789
|
-
console.log(' ' + '\x1b[
|
|
1787
|
+
console.log('');
|
|
1788
|
+
console.log(' ' + '\x1b[7m' + ' What happens next ' + '\x1b[0m');
|
|
1789
|
+
console.log(' ' + '\x1b[1m' + '─────────────────────────────────────────────────────────' + '\x1b[0m');
|
|
1790
1790
|
console.log(` ${dim('→')} A new terminal window will open with Claude Code\n`);
|
|
1791
1791
|
console.log(` ${bold('Once open:')}
|
|
1792
1792
|
`);
|
package/package.json
CHANGED