From 222d480399d24ddfdb3873905f444f113514d617 Mon Sep 17 00:00:00 2001 From: Brad Harris Date: Mon, 7 Sep 2026 11:14:09 -0600 Subject: [PATCH] feat(models): add gpt-6-astra to the codex model catalog OpenAI's Codex model-selection doc now lists gpt-6-astra as the most capable coding model, and codex-cli 0.153.4 carries the slug in its embedded (install-wide) registry, so it clears the bar for an unlabeled catalog entry. Verified: - embedded registry: `strings` on the 0.153.4 binary lists "gpt-6-astra" among its model slugs - `codex exec --model gpt-6-astra` runs and echoes `model: gpt-6-astra`, so the CLI accepts the flag rather than silently rerouting it - `scripts/audit-agent-models.ts` passes with the entry in place Listed first because the provider documents it as the flagship. The 0.147.0 CLI installed before this had no astra slug in either registry; the id only became verifiable after upgrading the CLI to 0.153.4. Co-Authored-By: Claude Opus 5 --- apps/server/src/shared/agent-models.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server/src/shared/agent-models.ts b/apps/server/src/shared/agent-models.ts index f2ee625f7..f6a75dd86 100644 --- a/apps/server/src/shared/agent-models.ts +++ b/apps/server/src/shared/agent-models.ts @@ -26,6 +26,7 @@ export const AGENT_MODEL_OPTIONS: Partial< Record > = { codex: [ + { id: "gpt-6-astra", label: "GPT-6 Astra" }, { id: "gpt-5.6-sol", label: "GPT-5.6 Sol" }, { id: "gpt-5.6-terra", label: "GPT-5.6 Terra" }, { id: "gpt-5.6-luna", label: "GPT-5.6 Luna" },