Compare commits
1 Commits
b6d3027882
...
7e80d350b1
| Author | SHA1 | Date |
|---|---|---|
|
|
7e80d350b1 |
|
|
@ -345,7 +345,7 @@ class AntigravitySetup extends BaseIdeSetup {
|
|||
};
|
||||
|
||||
const selected = await prompts.multiselect({
|
||||
message: `Select subagents to install ${chalk.dim('(↑/↓ navigate, SPACE select, ENTER confirm)')}:`,
|
||||
message: 'Select subagents to install:',
|
||||
choices: subagentConfig.files.map((file) => ({
|
||||
name: `${file.replace('.md', '')} - ${subagentInfo[file] || 'Specialized assistant'}`,
|
||||
value: file,
|
||||
|
|
|
|||
|
|
@ -353,7 +353,7 @@ class ClaudeCodeSetup extends BaseIdeSetup {
|
|||
};
|
||||
|
||||
const selected = await prompts.multiselect({
|
||||
message: `Select subagents to install ${chalk.dim('(↑/↓ navigate, SPACE select, ENTER confirm)')}:`,
|
||||
message: 'Select subagents to install:',
|
||||
options: subagentConfig.files.map((file) => ({
|
||||
label: `${file.replace('.md', '')} - ${subagentInfo[file] || 'Specialized assistant'}`,
|
||||
value: file,
|
||||
|
|
|
|||
|
|
@ -507,7 +507,7 @@ class UI {
|
|||
// Loop until user selects at least one tool OR explicitly confirms no tools
|
||||
while (!userConfirmedNoTools) {
|
||||
selectedIdes = await prompts.multiselect({
|
||||
message: `Select tools to configure ${chalk.dim('(↑/↓ navigate, SPACE select, ENTER confirm)')}:`,
|
||||
message: 'Select tools to configure:',
|
||||
choices: ideChoices,
|
||||
required: false,
|
||||
});
|
||||
|
|
@ -517,11 +517,9 @@ class UI {
|
|||
break;
|
||||
}
|
||||
|
||||
// Warn that no tools were selected - users often miss the spacebar requirement
|
||||
// Warn that no tools were selected
|
||||
console.log();
|
||||
console.log(chalk.red.bold('⚠️ WARNING: No tools were selected!'));
|
||||
console.log(chalk.red(' You must press SPACE to select items, then ENTER to confirm.'));
|
||||
console.log(chalk.red(' Simply highlighting an item does NOT select it.'));
|
||||
console.log();
|
||||
|
||||
const goBack = await prompts.confirm({
|
||||
|
|
@ -575,7 +573,7 @@ class UI {
|
|||
}));
|
||||
|
||||
const selectedModules = await prompts.multiselect({
|
||||
message: `Select modules to add ${chalk.dim('(↑/↓ navigate, SPACE select, ENTER confirm)')}:`,
|
||||
message: 'Select modules to add:',
|
||||
choices,
|
||||
required: true,
|
||||
});
|
||||
|
|
@ -777,7 +775,7 @@ class UI {
|
|||
}));
|
||||
|
||||
const selected = await prompts.multiselect({
|
||||
message: `Select modules to install ${chalk.dim('(↑/↓ navigate, SPACE select, ENTER confirm)')}:`,
|
||||
message: 'Select modules to install:',
|
||||
choices: choicesWithDefaults,
|
||||
required: false,
|
||||
});
|
||||
|
|
@ -1463,7 +1461,7 @@ class UI {
|
|||
}));
|
||||
|
||||
const keepModules = await prompts.multiselect({
|
||||
message: `Select custom modules to keep ${chalk.dim('(↑/↓ navigate, SPACE select, ENTER confirm)')}:`,
|
||||
message: 'Select custom modules to keep:',
|
||||
choices: selectChoices,
|
||||
required: false,
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue