multi-agents-cli 1.1.57 → 1.1.59
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 +11 -11
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -755,6 +755,17 @@ const main = async () => {
|
|
|
755
755
|
let contextSection = '';
|
|
756
756
|
|
|
757
757
|
let userSeedingContracts = false;
|
|
758
|
+
const outputModeIdx = await arrowSelect(
|
|
759
|
+
'Agent output mode for this session?',
|
|
760
|
+
[
|
|
761
|
+
{ label: `${green('→')} Full output ${dim('— see everything (default)')}` },
|
|
762
|
+
{ label: `${green('→')} Insights only ${dim('— phase narrations + important blocks')}` },
|
|
763
|
+
{ label: `${green('→')} Silent ${dim('— spinner + critical blocks only')}` },
|
|
764
|
+
],
|
|
765
|
+
rl
|
|
766
|
+
);
|
|
767
|
+
const outputMode = ['full', 'insights', 'silent'][outputModeIdx];
|
|
768
|
+
|
|
758
769
|
flowLoop: while (true) {
|
|
759
770
|
userSeedingContracts = false; // reset each iteration
|
|
760
771
|
|
|
@@ -1734,17 +1745,6 @@ ${excludedUrls}
|
|
|
1734
1745
|
);
|
|
1735
1746
|
const skipPermissions = permIdx === 0;
|
|
1736
1747
|
|
|
1737
|
-
const outputModeIdx = await arrowSelect(
|
|
1738
|
-
'Agent output mode for this session?',
|
|
1739
|
-
[
|
|
1740
|
-
{ label: `${green('→')} Full output ${dim('— see everything (default)')}` },
|
|
1741
|
-
{ label: `${green('→')} Insights only ${dim('— phase narrations + important blocks')}` },
|
|
1742
|
-
{ label: `${green('→')} Silent ${dim('— spinner + critical blocks only')}` },
|
|
1743
|
-
],
|
|
1744
|
-
rl
|
|
1745
|
-
);
|
|
1746
|
-
const outputMode = ['full', 'insights', 'silent'][outputModeIdx];
|
|
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