Hey everyone, I'm running into a wall trying to get a 5-agent swarm running on my ChatGPT Plus subscription via the openai-codex provider. I know the standard API key solves this, but I've seen mentions of people getting multi-agent setups working on the Codex tier and I'm trying to figure out how to bypass this race condition.
My Environment:
OS: Windows (PowerShell)
OpenClaw Version: 2026.4.26
Model Pipeline: "openai-codex/gpt-5.5"
Architecture: 5 custom agents (Atlas, Axon, Nova, Nexis, Lumi) connected to 6 specific Discord channels via the openclaw.json bindings.
The Core Issue:
Whenever my swarm boots up or multiple agents are triggered, they all attempt to grab the browser OAuth token at the same time. One agent successfully negotiates the session (Default Agent), rotating the token, and the others instantly crash the gateway because the token is invalidated.
The terminal throws this exact error from OpenAI:
[openai-codex] Token refresh failed: 401
"message": "Your refresh token has already been used to generate a new access token. Please try signing in again."
"code": "refresh_token_reused"