multi-agents-cli 1.0.67 → 1.0.68
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 +2 -0
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1401,6 +1401,7 @@ ${excludedUrls}
|
|
|
1401
1401
|
const termOpened = openTerminal(worktreePath);
|
|
1402
1402
|
if (termOpened) console.log(` ${green('✓')} New terminal opened with Claude Code CLI`);
|
|
1403
1403
|
else console.log(` ${yellow('!')} Could not open terminal - run ${cyan('claude')} manually in: ${dim(worktreePath)}`);
|
|
1404
|
+
console.log(`\n ${dim("This window can be closed.")}`);
|
|
1404
1405
|
rl.close();
|
|
1405
1406
|
process.exit(0);
|
|
1406
1407
|
|
|
@@ -1416,6 +1417,7 @@ ${excludedUrls}
|
|
|
1416
1417
|
} else if (sessionIdx === 2) {
|
|
1417
1418
|
const termOpened = openTerminal(worktreePath);
|
|
1418
1419
|
if (termOpened) console.log(` ${green('✓')} New terminal opened with Claude Code CLI`);
|
|
1420
|
+
console.log(`\n ${dim("This window can be closed.")}`);
|
|
1419
1421
|
rl.close();
|
|
1420
1422
|
process.exit(0);
|
|
1421
1423
|
|
package/package.json
CHANGED