From 4e19e9ac56c39c8c2ee0ba37310b2d668ae7fe8e Mon Sep 17 00:00:00 2001 From: mkorwel Date: Wed, 18 Mar 2026 23:07:45 -0700 Subject: [PATCH] fix(workspaces): clean up setup prompt UX --- .gemini/skills/workspaces/scripts/setup.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gemini/skills/workspaces/scripts/setup.ts b/.gemini/skills/workspaces/scripts/setup.ts index ae65c81a27..7d28f0e708 100644 --- a/.gemini/skills/workspaces/scripts/setup.ts +++ b/.gemini/skills/workspaces/scripts/setup.ts @@ -107,7 +107,7 @@ and full builds) to a dedicated, high-performance GCP worker. settings = JSON.parse(fs.readFileSync(settingsPath, 'utf8')); if (settings.workspace && !process.argv.includes('--reconfigure')) { console.log(' ✅ Existing configuration found.'); - const shouldSkip = await confirm(' ❓ Use existing configuration and skip to execution?'); + const shouldSkip = await confirm('Use existing configuration and skip to execution?'); if (shouldSkip) { skipConfig = true; } @@ -174,7 +174,7 @@ and full builds) to a dedicated, high-performance GCP worker. userFork = myForks[idx] || myForks[0]; } } else { - const shouldFork = await confirm(`❓ No fork detected. Create a personal fork for sandboxed implementations?`); + const shouldFork = await confirm('No fork detected. Create a personal fork for sandboxed implementations?'); userFork = shouldFork ? await createFork(upstreamRepo) : upstreamRepo; } } catch (e) { @@ -270,7 +270,7 @@ and full builds) to a dedicated, high-performance GCP worker. let status = await provider.getStatus(); if (status.status === 'UNKNOWN' || status.status === 'ERROR') { - const shouldProvision = await confirm(`❓ Worker ${targetVM} not found. Provision it now?`); + const shouldProvision = await confirm(`Worker ${targetVM} not found. Provision it now?`); if (!shouldProvision) return 1; const provisionRes = await provider.provision();