multi-agents-cli 1.0.9 → 1.0.11
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/init.js +6 -6
- package/package.json +1 -1
package/init.js
CHANGED
|
@@ -714,13 +714,13 @@ const main = async () => {
|
|
|
714
714
|
if (restartIfBack(ideChoice)) return;
|
|
715
715
|
|
|
716
716
|
// ── Confirmation ──────────────────────────────────────────────────────────
|
|
717
|
-
console.log(`\n Selected: ${bold(ideChoice.name)}`);
|
|
718
717
|
if (ideChoice.cmd && !ideChoice.detected) {
|
|
719
|
-
console.log(yellow(
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
718
|
+
console.log(`\n ${yellow('⚠')} ${bold(ideChoice.name)} was not detected on this machine.`);
|
|
719
|
+
console.log(dim(' It may not open automatically when launching a task.\n'));
|
|
720
|
+
if (!await arrowConfirm('Continue with this IDE anyway?', rl)) {
|
|
721
|
+
console.log(dim(' Re-selecting...\n'));
|
|
722
|
+
continue;
|
|
723
|
+
}
|
|
724
724
|
}
|
|
725
725
|
|
|
726
726
|
// ── Double-check ──────────────────────────────────────────────────────────
|
package/package.json
CHANGED