multi-agents-cli 1.1.58 → 1.1.60
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
|
|
|
@@ -1724,17 +1735,6 @@ ${excludedUrls}
|
|
|
1724
1735
|
}, 600);
|
|
1725
1736
|
});
|
|
1726
1737
|
|
|
1727
|
-
const outputModeIdx = await arrowSelect(
|
|
1728
|
-
'Agent output mode for this session?',
|
|
1729
|
-
[
|
|
1730
|
-
{ label: `${green('→')} Full output ${dim('— see everything (default)')}` },
|
|
1731
|
-
{ label: `${green('→')} Insights only ${dim('— phase narrations + important blocks')}` },
|
|
1732
|
-
{ label: `${green('→')} Silent ${dim('— spinner + critical blocks only')}` },
|
|
1733
|
-
],
|
|
1734
|
-
rl
|
|
1735
|
-
);
|
|
1736
|
-
const outputMode = ['full', 'insights', 'silent'][outputModeIdx];
|
|
1737
|
-
|
|
1738
1738
|
const permIdx = await arrowSelect(
|
|
1739
1739
|
'Grant agent full permissions for this session?',
|
|
1740
1740
|
[
|
package/package.json
CHANGED