multi-agents-cli 1.1.48 → 1.1.50
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 +32 -26
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1743,15 +1743,17 @@ ${excludedUrls}
|
|
|
1743
1743
|
|
|
1744
1744
|
if (sessionIdx === 0) {
|
|
1745
1745
|
console.log('');
|
|
1746
|
-
console.log('
|
|
1747
|
-
console.log(' '
|
|
1748
|
-
console.log(
|
|
1749
|
-
console.log(
|
|
1750
|
-
console.log(
|
|
1751
|
-
|
|
1752
|
-
console.log(
|
|
1753
|
-
console.log(
|
|
1754
|
-
console.log(
|
|
1746
|
+
console.log(' \x1b[7m What happens next \x1b[0m');
|
|
1747
|
+
console.log(' ┌─────────────────────────────────────────────────────────┐');
|
|
1748
|
+
console.log(' │ → \x1b[1m' + (config.ide.name || 'Your IDE') + '\x1b[0m will open at your agent workspace │');
|
|
1749
|
+
console.log(' │ → A new terminal window will open with Claude Code │');
|
|
1750
|
+
console.log(' │ │');
|
|
1751
|
+
console.log(' │ \x1b[1mOnce open:\x1b[0m │');
|
|
1752
|
+
console.log(' │ \x1b[1m2.\x1b[0m Type anything \x1b[2m(e.g. go, start, begin)\x1b[0m │');
|
|
1753
|
+
console.log(' │ \x1b[1m3.\x1b[0m Let the agent run — don\'t interrupt mid-task │');
|
|
1754
|
+
console.log(' │ \x1b[1mThe agent\x1b[0m will run \x1b[36mnpm run complete\x1b[0m automatically │');
|
|
1755
|
+
console.log(' └─────────────────────────────────────────────────────────┘');
|
|
1756
|
+
console.log('');
|
|
1755
1757
|
const goIdx = await arrowSelect('Ready?', [{ label: `${green('✓')} Open workspace` }, { label: `${dim('←')} Back` }], rl);
|
|
1756
1758
|
if (goIdx === 1) { continue sessionLoop; }
|
|
1757
1759
|
const openedIDE = openIDE(worktreePath);
|
|
@@ -1766,15 +1768,17 @@ ${excludedUrls}
|
|
|
1766
1768
|
|
|
1767
1769
|
} else if (sessionIdx === 1) {
|
|
1768
1770
|
console.log('');
|
|
1769
|
-
console.log('
|
|
1770
|
-
console.log(' '
|
|
1771
|
-
console.log(
|
|
1772
|
-
console.log(
|
|
1773
|
-
|
|
1774
|
-
console.log(
|
|
1775
|
-
console.log(
|
|
1776
|
-
console.log(
|
|
1777
|
-
console.log(
|
|
1771
|
+
console.log(' \x1b[7m What happens next \x1b[0m');
|
|
1772
|
+
console.log(' ┌─────────────────────────────────────────────────────────┐');
|
|
1773
|
+
console.log(' │ → \x1b[1m' + (config.ide.name || 'Your IDE') + '\x1b[0m will open at your agent workspace │');
|
|
1774
|
+
console.log(' │ │');
|
|
1775
|
+
console.log(' │ \x1b[1mOnce open:\x1b[0m │');
|
|
1776
|
+
console.log(' │ \x1b[1m1.\x1b[0m Open a new Claude Code session inside the IDE │');
|
|
1777
|
+
console.log(' │ \x1b[1m3.\x1b[0m Type anything \x1b[2m(e.g. go, start, begin)\x1b[0m │');
|
|
1778
|
+
console.log(' │ \x1b[1m4.\x1b[0m Let the agent run — don\'t interrupt mid-task │');
|
|
1779
|
+
console.log(' │ \x1b[1mThe agent\x1b[0m will run \x1b[36mnpm run complete\x1b[0m automatically │');
|
|
1780
|
+
console.log(' └─────────────────────────────────────────────────────────┘');
|
|
1781
|
+
console.log('');
|
|
1778
1782
|
const goIdx = await arrowSelect('Ready?', [{ label: `${green('✓')} Open workspace` }, { label: `${dim('←')} Back` }], rl);
|
|
1779
1783
|
if (goIdx === 1) { continue sessionLoop; }
|
|
1780
1784
|
const openedIDE = openIDE(worktreePath);
|
|
@@ -1785,14 +1789,16 @@ ${excludedUrls}
|
|
|
1785
1789
|
|
|
1786
1790
|
} else if (sessionIdx === 2) {
|
|
1787
1791
|
console.log('');
|
|
1788
|
-
console.log('
|
|
1789
|
-
console.log(' '
|
|
1790
|
-
console.log(
|
|
1791
|
-
console.log(
|
|
1792
|
-
|
|
1793
|
-
console.log(
|
|
1794
|
-
console.log(
|
|
1795
|
-
console.log(
|
|
1792
|
+
console.log(' \x1b[7m What happens next \x1b[0m');
|
|
1793
|
+
console.log(' ┌─────────────────────────────────────────────────────────┐');
|
|
1794
|
+
console.log(' │ → A new terminal window will open with Claude Code │');
|
|
1795
|
+
console.log(' │ │');
|
|
1796
|
+
console.log(' │ \x1b[1mOnce open:\x1b[0m │');
|
|
1797
|
+
console.log(' │ \x1b[1m2.\x1b[0m Type anything \x1b[2m(e.g. go, start, begin)\x1b[0m │');
|
|
1798
|
+
console.log(' │ \x1b[1m3.\x1b[0m Let the agent run — don\'t interrupt mid-task │');
|
|
1799
|
+
console.log(' │ \x1b[1mThe agent\x1b[0m will run \x1b[36mnpm run complete\x1b[0m automatically │');
|
|
1800
|
+
console.log(' └─────────────────────────────────────────────────────────┘');
|
|
1801
|
+
console.log('');
|
|
1796
1802
|
const goIdx = await arrowSelect('Ready?', [{ label: `${green('✓')} Open workspace` }, { label: `${dim('←')} Back` }], rl);
|
|
1797
1803
|
if (goIdx === 1) { continue sessionLoop; }
|
|
1798
1804
|
const termOpened = openTerminal(worktreePath, skipPermissions);
|
package/package.json
CHANGED