helixmind 0.5.13 → 0.5.15
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/dist/cli/commands/chat.js +3 -2
- package/dist/cli/commands/chat.js.map +1 -1
- package/dist/cli/commands/setup.d.ts +1 -1
- package/dist/cli/commands/setup.d.ts.map +1 -1
- package/dist/cli/commands/setup.js +18 -24
- package/dist/cli/commands/setup.js.map +1 -1
- package/dist/cli/ui/select-menu.d.ts.map +1 -1
- package/dist/cli/ui/select-menu.js +15 -0
- package/dist/cli/ui/select-menu.js.map +1 -1
- package/package.json +1 -1
|
@@ -4689,8 +4689,9 @@ async function handleSlashCommand(input, messages, agentHistory, config, spiralE
|
|
|
4689
4689
|
];
|
|
4690
4690
|
rl.pause();
|
|
4691
4691
|
process.stdout.write(`\n ${chalk.hex('#ff00ff').bold('\u{1F916}')} ${chalk.white.bold('Autonomy Level')}\n`);
|
|
4692
|
-
const levelIdx = await chromeSelect(autonomyItems, { cancelLabel: 'Default (L2)', pageSize: 6
|
|
4692
|
+
const levelIdx = await chromeSelect(autonomyItems, { cancelLabel: 'Default (L2)', pageSize: 6 });
|
|
4693
4693
|
rl.resume();
|
|
4694
|
+
chrome?.activate(); // Re-activate chrome that was deactivated at onboarding start
|
|
4694
4695
|
const chosenLevel = (levelIdx >= 0 ? levelIdx : 2);
|
|
4695
4696
|
jarvisCtx.autonomy.setLevel(chosenLevel);
|
|
4696
4697
|
jarvisCtx.identity.setAutonomyLevel(chosenLevel);
|
|
@@ -4720,7 +4721,7 @@ async function handleSlashCommand(input, messages, agentHistory, config, spiralE
|
|
|
4720
4721
|
autonomyItems[currentLevel].marker = '\u25C0 current';
|
|
4721
4722
|
rl.pause();
|
|
4722
4723
|
process.stdout.write(`\n ${chalk.hex('#ff00ff').bold('\u{1F916}')} ${chalk.white.bold('Autonomy Level')}\n`);
|
|
4723
|
-
const levelIdx = await chromeSelect(autonomyItems, { cancelLabel: `Keep L${currentLevel}`, pageSize: 6
|
|
4724
|
+
const levelIdx = await chromeSelect(autonomyItems, { cancelLabel: `Keep L${currentLevel}`, pageSize: 6 });
|
|
4724
4725
|
rl.resume();
|
|
4725
4726
|
const chosenLevel = (levelIdx >= 0 ? levelIdx : currentLevel);
|
|
4726
4727
|
jarvisCtx.autonomy.setLevel(chosenLevel);
|