External Publication
Visit Post

Codex is unusable with automations

OpenAI Developer Community May 26, 2026
Source
I think your instinct to test a single worker is the right move. If each automation is opening its own chat session, then 12 automations may be creating a lot of fragile live state at once. Even if the repos are small, the issue may not be repo size. It may be session stability, concurrency, and what happens when a stream drops before the task has a durable checkpoint. For unattended work, I have found it helps to treat the agent less like a chat window and more like a managed job. One worker takes one task, records what it is doing outside the chat, saves progress after meaningful steps, and can resume from the last good point if the connection drops or the session stalls. Then, once that is stable, add concurrency carefully. The disconnects may still be on the platform side, but a single worker model should help you separate “Codex cannot do the task” from “too many live agent sessions are making the workflow unstable.”

Discussion in the ATmosphere

Loading comments...