I need help getting my OpenClaw agent to run GPT-5.5 right now.
Context:
- Host machine: macOS
- OpenClaw version: 2026.4.22
- My agent currently works on
openai-codex/gpt-5.4 - I want GPT-5.5
- I use OpenAI Codex / ChatGPT subscription auth, not a plain OpenAI API key for this route
Important route distinction:
openai-codex/*= Codex OAuth through the normal OpenClaw PI runneropenai/*= different route, and docs sayopenai/gpt-5.5may work through the native Codex harness- This is not a simple API-key issue
What happened:
-
I re-authenticated Codex OAuth successfully and now have:
- one fresh healthy Codex OAuth profile
- one stale old Codex OAuth profile that had a refresh-token issue
-
I set auth order to prefer the healthy profile.
-
I updated OpenClaw:
openclaw update- result: already on 2026.4.22
-
I checked model availability:
openclaw models list --provider openai-codex
Output:
openai-codex/gpt-5.5-> tags:default,configured,missingopenai-codex/gpt-5.4-> available and working
- I ran a real smoke test:
openclaw infer model run --prompt "Reply with exactly: smoke-ok" --model openai-codex/gpt-5.5 --json
Exact failure:
FailoverError: Unknown model: openai-codex/gpt-5.5
- I reverted to a working model so the agent stays alive:
openclaw models set openai-codex/gpt-5.4openclaw gateway restart
Why this is confusing:
- Current OpenClaw docs appear to say GPT-5.5 should be available
- Docs suggest two 5.5 paths:
openai-codex/gpt-5.5through PI/Codex OAuthopenai/gpt-5.5through the native Codex app-server harness
- But on my live host, the first path fails as unknown model
What I want help with:
- How do I get GPT-5.5 working now?
- Is
openai-codex/gpt-5.5broken on 2026.4.22 despite docs saying otherwise?