multi-agents-cli 1.1.57 → 1.1.58
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 +10 -10
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1724,16 +1724,6 @@ ${excludedUrls}
|
|
|
1724
1724
|
}, 600);
|
|
1725
1725
|
});
|
|
1726
1726
|
|
|
1727
|
-
const permIdx = await arrowSelect(
|
|
1728
|
-
'Grant agent full permissions for this session?',
|
|
1729
|
-
[
|
|
1730
|
-
{ label: `${green('→')} Yes — skip all permission prompts ${dim('(recommended — some compound commands may still prompt)')}` },
|
|
1731
|
-
{ label: `${dim('→')} No — I'll approve each action manually` },
|
|
1732
|
-
],
|
|
1733
|
-
rl
|
|
1734
|
-
);
|
|
1735
|
-
const skipPermissions = permIdx === 0;
|
|
1736
|
-
|
|
1737
1727
|
const outputModeIdx = await arrowSelect(
|
|
1738
1728
|
'Agent output mode for this session?',
|
|
1739
1729
|
[
|
|
@@ -1745,6 +1735,16 @@ ${excludedUrls}
|
|
|
1745
1735
|
);
|
|
1746
1736
|
const outputMode = ['full', 'insights', 'silent'][outputModeIdx];
|
|
1747
1737
|
|
|
1738
|
+
const permIdx = await arrowSelect(
|
|
1739
|
+
'Grant agent full permissions for this session?',
|
|
1740
|
+
[
|
|
1741
|
+
{ label: `${green('→')} Yes — skip all permission prompts ${dim('(recommended — some compound commands may still prompt)')}` },
|
|
1742
|
+
{ label: `${dim('→')} No — I'll approve each action manually` },
|
|
1743
|
+
],
|
|
1744
|
+
rl
|
|
1745
|
+
);
|
|
1746
|
+
const skipPermissions = permIdx === 0;
|
|
1747
|
+
|
|
1748
1748
|
sessionLoop: while (true) {
|
|
1749
1749
|
const sessionIdx = await arrowSelect('How would you like to start the session?', [
|
|
1750
1750
|
{ label: `${green('→')} IDE + new terminal ${dim('(Claude Code CLI)')} ${dim('← recommended')}` },
|
package/package.json
CHANGED