From 981de051813ae9b2b406d89d119cd6a8346238a2 Mon Sep 17 00:00:00 2001 From: Shakker Date: Tue, 3 Feb 2026 08:37:40 +0000 Subject: [PATCH] Onboarding: drop completion prompt --- src/wizard/onboarding.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/wizard/onboarding.ts b/src/wizard/onboarding.ts index 544e455ec..e5cab60f6 100644 --- a/src/wizard/onboarding.ts +++ b/src/wizard/onboarding.ts @@ -10,7 +10,6 @@ import type { QuickstartGatewayDefaults, WizardFlow } from "./onboarding.types.j import { ensureAuthProfileStore } from "../agents/auth-profiles.js"; import { listChannelPlugins } from "../channels/plugins/index.js"; import { formatCliCommand } from "../cli/command-format.js"; -import { installCompletion } from "../cli/completion-cli.js"; import { promptAuthChoiceGrouped } from "../commands/auth-choice-prompt.js"; import { applyAuthChoice, @@ -468,16 +467,4 @@ export async function runOnboardingWizard( if (launchedTui) { return; } - - const installShell = await prompter.confirm({ - message: "Install shell completion script?", - initialValue: true, - }); - - if (installShell) { - const shell = process.env.SHELL?.split("/").pop() || "zsh"; - // We pass 'yes=true' to skip any double-confirmation inside the helper, - // as the wizard prompt above serves as confirmation. - await installCompletion(shell, true); - } }