fix: default all setup options to enabled in picker (#2507)

The multiselect picker for setup options (Chrome browser, GitHub CLI,
etc.) started with nothing selected. Now all available options are
pre-selected so users get the full setup by default.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Ahmed Abushagur 2026-03-11 16:43:03 -07:00 committed by GitHub
parent 529a1b3b02
commit aa6e7dd1fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@openrouter/spawn",
"version": "0.16.12",
"version": "0.16.13",
"type": "module",
"bin": {
"spawn": "cli.js"

View file

@ -176,7 +176,7 @@ async function promptSetupOptions(agentName: string): Promise<Set<string> | unde
label: s.label,
hint: s.hint,
})),
initialValues: [],
initialValues: filteredSteps.map((s) => s.value),
required: false,
});