multi-agents-cli 1.0.63 → 1.0.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/agent.js +6 -3
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1403,7 +1403,8 @@ ${excludedUrls}
|
|
|
1403
1403
|
else console.log(` ${yellow('!')} Could not open terminal - run ${cyan('claude')} manually in: ${dim(worktreePath)}`);
|
|
1404
1404
|
separator();
|
|
1405
1405
|
console.log(`\n ${dim('When the agent is done, run:')} ${cyan('npm run complete')}\n`);
|
|
1406
|
-
|
|
1406
|
+
rl.close();
|
|
1407
|
+
process.exit(0);
|
|
1407
1408
|
|
|
1408
1409
|
} else if (sessionIdx === 1) {
|
|
1409
1410
|
const openedIDE = openIDE(worktreePath);
|
|
@@ -1412,7 +1413,8 @@ ${excludedUrls}
|
|
|
1412
1413
|
separator();
|
|
1413
1414
|
console.log(`\n ${dim('Open a NEW Claude Code session and type')} ${cyan('go')} ${dim('to start.')}\n`);
|
|
1414
1415
|
console.log(` ${dim('When done, run:')} ${cyan('npm run complete')}\n`);
|
|
1415
|
-
|
|
1416
|
+
rl.close();
|
|
1417
|
+
process.exit(0);
|
|
1416
1418
|
|
|
1417
1419
|
} else if (sessionIdx === 2) {
|
|
1418
1420
|
const termOpened = openTerminal(worktreePath);
|
|
@@ -1420,7 +1422,8 @@ ${excludedUrls}
|
|
|
1420
1422
|
else console.log(` ${yellow('!')} Could not open terminal - run ${cyan('claude')} manually in: ${dim(worktreePath)}`);
|
|
1421
1423
|
separator();
|
|
1422
1424
|
console.log(`\n ${dim('When the agent is done, run:')} ${cyan('npm run complete')}\n`);
|
|
1423
|
-
|
|
1425
|
+
rl.close();
|
|
1426
|
+
process.exit(0);
|
|
1424
1427
|
|
|
1425
1428
|
} else {
|
|
1426
1429
|
separator();
|
package/package.json
CHANGED