From 3ad2fa3fb572eecdc356530eadf2838656d899cd Mon Sep 17 00:00:00 2001 From: Parth Sareen Date: Thu, 14 May 2026 12:08:08 -0700 Subject: [PATCH] launch: update codex app UI copy (#16157) --- app/ui/app/src/components/LaunchCommands.tsx | 2 +- cmd/launch/integrations_test.go | 5 +++++ cmd/launch/registry.go | 4 ++-- cmd/tui/tui_test.go | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/app/ui/app/src/components/LaunchCommands.tsx b/app/ui/app/src/components/LaunchCommands.tsx index f2b50cf5e..29afd209b 100644 --- a/app/ui/app/src/components/LaunchCommands.tsx +++ b/app/ui/app/src/components/LaunchCommands.tsx @@ -25,7 +25,7 @@ const LAUNCH_COMMANDS: LaunchCommand[] = [ id: "codex-app", name: "Codex App", command: "ollama launch codex-app", - description: "OpenAI's desktop coding agent", + description: "An AI agent you can delegate real work to, by OpenAI", icon: "/launch-icons/codex-app.png", iconClassName: "h-full w-full", }, diff --git a/cmd/launch/integrations_test.go b/cmd/launch/integrations_test.go index 8a842eea5..7e7879bba 100644 --- a/cmd/launch/integrations_test.go +++ b/cmd/launch/integrations_test.go @@ -1740,6 +1740,11 @@ func TestIntegration_InstallHint(t *testing.T) { input: "codex", wantURL: "https://developers.openai.com/codex/cli/", }, + { + name: "codex app has hint", + input: "codex-app", + wantURL: "https://developers.openai.com/codex/quickstart", + }, { name: "openclaw has hint", input: "openclaw", diff --git a/cmd/launch/registry.go b/cmd/launch/registry.go index 968d7b4bf..a69a82bd1 100644 --- a/cmd/launch/registry.go +++ b/cmd/launch/registry.go @@ -91,12 +91,12 @@ var integrationSpecs = []*IntegrationSpec{ Name: "codex-app", Runner: &CodexApp{}, Aliases: []string{"codex-desktop", "codex-gui"}, - Description: "OpenAI's desktop coding agent", + Description: "An AI agent you can delegate real work to, by OpenAI", Install: IntegrationInstallSpec{ CheckInstalled: func() bool { return codexAppInstalled() }, - URL: "https://developers.openai.com/codex/app/overview/", + URL: "https://developers.openai.com/codex/quickstart", }, }, { diff --git a/cmd/tui/tui_test.go b/cmd/tui/tui_test.go index 7f2504616..91b3abd90 100644 --- a/cmd/tui/tui_test.go +++ b/cmd/tui/tui_test.go @@ -32,7 +32,7 @@ func launcherTestState() *launch.LauncherState { "codex-app": { Name: "codex-app", DisplayName: "Codex App", - Description: "OpenAI's desktop coding agent", + Description: "An AI agent you can delegate real work to, by OpenAI", Selectable: true, Changeable: true, },