multi-agents-cli 1.1.30 → 1.1.31
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 +4 -7
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1748,10 +1748,9 @@ ${excludedUrls}
|
|
|
1748
1748
|
console.log(` ${dim('→')} A new terminal window will open with Claude Code\n`);
|
|
1749
1749
|
console.log(` ${bold('Once open:')}
|
|
1750
1750
|
`);
|
|
1751
|
-
console.log(` ${bold('1.')} Approve the workspace trust prompt in Claude Code`);
|
|
1752
1751
|
console.log(` ${bold('2.')} Type anything to start ${dim("(e.g. 'go', 'start', 'begin')")}`);
|
|
1753
1752
|
console.log(` ${bold('3.')} Let the agent run autonomously — don't interrupt mid-task`);
|
|
1754
|
-
console.log(` ${bold('
|
|
1753
|
+
console.log(` ${bold('The agent')} will run ${cyan('npm run complete')} automatically when done\n`);
|
|
1755
1754
|
const goIdx = await arrowSelect('Ready?', [{ label: `${green('✓')} Open workspace` }, { label: `${dim('←')} Back` }], rl);
|
|
1756
1755
|
if (goIdx === 1) { continue sessionLoop; }
|
|
1757
1756
|
const openedIDE = openIDE(worktreePath);
|
|
@@ -1772,10 +1771,9 @@ ${excludedUrls}
|
|
|
1772
1771
|
console.log(` ${bold('Once open:')}
|
|
1773
1772
|
`);
|
|
1774
1773
|
console.log(` ${bold('1.')} Open a new Claude Code session inside the IDE`);
|
|
1775
|
-
console.log(` ${bold('2.')} Approve the workspace trust prompt`);
|
|
1776
1774
|
console.log(` ${bold('3.')} Type anything to start ${dim("(e.g. 'go', 'start', 'begin')")}`);
|
|
1777
1775
|
console.log(` ${bold('4.')} Let the agent run autonomously — don't interrupt mid-task`);
|
|
1778
|
-
console.log(` ${bold('
|
|
1776
|
+
console.log(` ${bold('The agent')} will run ${cyan('npm run complete')} automatically when done\n`);
|
|
1779
1777
|
const goIdx = await arrowSelect('Ready?', [{ label: `${green('✓')} Open workspace` }, { label: `${dim('←')} Back` }], rl);
|
|
1780
1778
|
if (goIdx === 1) { continue sessionLoop; }
|
|
1781
1779
|
const openedIDE = openIDE(worktreePath);
|
|
@@ -1791,10 +1789,9 @@ ${excludedUrls}
|
|
|
1791
1789
|
console.log(` ${dim('→')} A new terminal window will open with Claude Code\n`);
|
|
1792
1790
|
console.log(` ${bold('Once open:')}
|
|
1793
1791
|
`);
|
|
1794
|
-
console.log(` ${bold('1.')} Approve the workspace trust prompt in Claude Code`);
|
|
1795
1792
|
console.log(` ${bold('2.')} Type anything to start ${dim("(e.g. 'go', 'start', 'begin')")}`);
|
|
1796
1793
|
console.log(` ${bold('3.')} Let the agent run autonomously — don't interrupt mid-task`);
|
|
1797
|
-
console.log(` ${bold('
|
|
1794
|
+
console.log(` ${bold('The agent')} will run ${cyan('npm run complete')} automatically when done\n`);
|
|
1798
1795
|
const goIdx = await arrowSelect('Ready?', [{ label: `${green('✓')} Open workspace` }, { label: `${dim('←')} Back` }], rl);
|
|
1799
1796
|
if (goIdx === 1) { continue sessionLoop; }
|
|
1800
1797
|
const termOpened = openTerminal(worktreePath, skipPermissions);
|
|
@@ -1822,7 +1819,7 @@ ${excludedUrls}
|
|
|
1822
1819
|
console.log(` ${bold('2.')} Open a NEW Claude Code session and type ${cyan('go')} to start`);
|
|
1823
1820
|
console.log(dim(' Do NOT reuse a previous session.\n'));
|
|
1824
1821
|
console.log(` ${bold('3.')} Let the agent run autonomously\n`);
|
|
1825
|
-
console.log(` ${bold('4.')}
|
|
1822
|
+
console.log(` ${bold('4.')} The agent will run ${cyan('npm run complete')} automatically when done\n`);
|
|
1826
1823
|
separator();
|
|
1827
1824
|
console.log('');
|
|
1828
1825
|
await arrowSelect('Press enter to continue', [{ label: 'OK, got it' }], rl);
|
package/package.json
CHANGED