Make IDE selection platform-agnostic
- Removed all pre-selection (all unchecked by default)
- Removed star markers (⭐) - no preferences shown
- Sorted alphabetically for neutral presentation
- Users must actively choose their tools
- Validation still requires at least one selection
Platform-agnostic: WDS works equally well with any AI coding tool
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
1fadda6eb5
commit
5ad7af3371
|
|
@ -63,12 +63,12 @@ class UI {
|
|||
name: 'ides',
|
||||
message: 'Which tools/IDEs are you using? (use spacebar to select)',
|
||||
choices: [
|
||||
{ name: 'Windsurf ⭐', value: 'windsurf', checked: true },
|
||||
{ name: 'Cursor ⭐', value: 'cursor', checked: true },
|
||||
{ name: 'Claude Code', value: 'claude-code', checked: false },
|
||||
{ name: 'GitHub Copilot', value: 'github-copilot', checked: false },
|
||||
{ name: 'Cline', value: 'cline', checked: false },
|
||||
{ name: 'Cursor', value: 'cursor', checked: false },
|
||||
{ name: 'GitHub Copilot', value: 'github-copilot', checked: false },
|
||||
{ name: 'VS Code', value: 'vscode', checked: false },
|
||||
{ name: 'Windsurf', value: 'windsurf', checked: false },
|
||||
{ name: 'Other', value: 'other', checked: false },
|
||||
],
|
||||
validate: (answers) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue