launch: update codex app UI copy (#16157)

This commit is contained in:
Parth Sareen
2026-05-14 12:08:08 -07:00
committed by GitHub
parent 6b6f45ef0e
commit 3ad2fa3fb5
4 changed files with 9 additions and 4 deletions

View File

@@ -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",
},

View File

@@ -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",

View File

@@ -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",
},
},
{

View File

@@ -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,
},