From fc7580ab5e03ef2eb82f20e07077f6742bf9cf95 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 9 Jan 2026 15:14:25 +0100 Subject: [PATCH] fix: remove configure control-ui prompt --- CHANGELOG.md | 1 + src/commands/configure.ts | 38 -------------------------------------- 2 files changed, 1 insertion(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6df7cd0b..f1ec31f6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -95,6 +95,7 @@ - CLI: add global `--no-color` (and respect `NO_COLOR=1`) to disable ANSI output. — thanks @steipete - CLI: centralize lobster palette + apply it to onboarding/config prompts. — thanks @steipete - Gateway/CLI: add `clawdbot gateway --dev/--reset` to auto-create a dev config/workspace with a robot identity (no BOOTSTRAP.md), and reset wipes config/creds/sessions/workspace. — thanks @steipete +- Configure: stop prompting to open the Control UI (still shown in onboarding). — thanks @steipete - Config: fix Minimax hosted onboarding to write `agents.defaults` and allow `msteams` as a heartbeat target. — thanks @steipete ## 2026.1.8 diff --git a/src/commands/configure.ts b/src/commands/configure.ts index 1416a255c..f915f439e 100644 --- a/src/commands/configure.ts +++ b/src/commands/configure.ts @@ -78,11 +78,8 @@ import { import { applyWizardMetadata, DEFAULT_WORKSPACE, - detectBrowserOpenSupport, ensureWorkspaceAndSessions, - formatControlUiSshHint, guardCancel, - openUrl, printWizardHeader, probeGatewayReachable, randomToken, @@ -1142,41 +1139,6 @@ export async function runConfigureWizard( "Control UI", ); - const browserSupport = await detectBrowserOpenSupport(); - if (gatewayProbe.ok) { - if (!browserSupport.ok) { - note( - formatControlUiSshHint({ - port: gatewayPort, - basePath: nextConfig.gateway?.controlUi?.basePath, - token: gatewayToken, - }), - "Open Control UI", - ); - } else { - const wantsOpen = guardCancel( - await confirm({ - message: "Open Control UI now?", - initialValue: false, - }), - runtime, - ); - if (wantsOpen) { - const opened = await openUrl(links.httpUrl); - if (!opened) { - note( - formatControlUiSshHint({ - port: gatewayPort, - basePath: nextConfig.gateway?.controlUi?.basePath, - token: gatewayToken, - }), - "Open Control UI", - ); - } - } - } - } - outro("Configure complete."); }