GPT‑5.6 regression: stronger planning, weaker execution and instruction adherence
Open 💬 6 comments Opened Jul 30, 2026 by hanktos
💡 Likely answer: A maintainer (github-actions[bot], contributor)
responded on this thread — see the highlighted reply below.
What version of Codex CLI is running?
codex-cli 0.146.0
What subscription do you have?
max
Which model were you using?
gpt 5.6 sol high
What platform is your computer?
Microsoft Windows NT 10.0.26200.0 x64
What terminal emulator and version are you using (if applicable)?
Windows Terminal Powershell 7.6.4, Core
Codex doctor report
What issue are you seeing?
> Compared with GPT‑5.5, GPT‑5.6 appears stronger at planning, architectural assessment, and identifying risks, but weaker at straightforward execution and instruction adherence. It more frequently re-plans, expands scope, or follows inferred/persistent goals
> instead of carrying out the latest explicit instruction. GPT‑5.5 felt more direct and reliably completed the requested work, while GPT‑5.6 often produces a better analysis but a worse operational result. This pattern has repeated across several unrelated
> projects.
What steps can reproduce the bug?
Uploaded thread: 019fb46d-7bed-7352-aac2-08e399888a05
What is the expected behavior?
_No response_
Additional information
_No response_
6 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
I believe this is largely caused by the harness and the way context compression works. A model like Sol generates a lot of context, and with the relatively small context window available to Codex, that window fills up quickly.
After compression, especially when the model’s reasoning is also carried forward, the original weight of what you initially asked it to do becomes relatively small. The model most likely sees more of its own thoughts about what could be improved than the original task itself, so it gradually drifts away from the actual goal.
#34963
I have also noticed that after context compression, the model can fall into a loop and forget what it was doing. They probably assumed that carrying over the latest reasoning would solve this problem, but after compression it may cause the model’s own thoughts to carry more weight than the user’s original prompt.
[https://openai.com/index/how-two-settings-tripled-our-arc-agi-3-scores/](https://openai.com/index/how-two-settings-tripled-our-arc-agi-3-scores/
)
Although it is impossible to be certain, since they do not disclose the details of what exactly the compressed context contains. So, to some extent, this is still educated guesswork.
I can independently confirm this regression on macOS, using both GPT-5.6 Sol (including Ultra) and Terra in Codex.
Over the last couple of weeks, comparable real-world coding and operational tasks have become significantly slower and less reliable. The recurring pattern is excessive planning, auditing and re-auditing, drift from explicit instructions, and an incomplete or incorrect final result.
The most severe case was with
/goal: one task ran for approximately 12 hours and consumed an entire week's allowance, yet the result was still wrong. I had to redo the work with GLM 5.2. On comparable tasks, Claude Opus 5 and GLM 5.2 have reached a correct, tested result in a fraction of the time.The core regression is not merely token consumption: GPT-5.6 Sol and Terra need to be more concise, follow the latest explicit instruction, stop deliberating when evidence is sufficient, and execute and validate the requested work instead of repeatedly expanding scope.
Independent reproduction: Sol Ultra turned a bounded live-test-prep task into a 2h19m certification loop despite repeated scope corrections
I can independently reproduce the behavior described here with GPT-5.6 Sol Ultra in Codex, and I have a complete transcript of the session.
This was not a vague/autonomous request. I was working on a Project Zomboid mod. After an earlier code review had identified specific remaining blockers, my next instruction was simply:
The reasonable remaining scope was: finish the known gameplay blockers, run the existing validation, back up/install the exact candidate, clear old logs, and produce the test package. MP would remain explicitly unconfirmed until live MP testing.
Instead, Sol silently changed the definition of done from “prepare a live-test candidate” into something much closer to “fully certify the runtime, diagnostics system, analyzer, packaging, documentation, lifecycle evidence, and release gates.”
The run lasted 2h 19m 7s.
What the scope expansion looked like
Sol created parallel
Core live candidate,Diagnostics live candidate, andPackage live candidateworkstreams. Once those were nominally complete, it added an independent integration audit. Each new audit finding then became another prerequisite before I was allowed to test the build.The sequence expanded into things such as:
sessionEndevidence requirements;Some real gameplay bugs were found, and I explicitly told Codex that genuine bugs were valid reasons to continue. My complaint is not that it found bugs. The problem is that it repeatedly promoted diagnostic/evidence-hardening and newly invented certification requirements into blockers for the original task of getting a build ready for live testing.
Explicit course correction did not reset the execution plan
After it had already been running far longer than expected, I told it:
Sol correctly acknowledged the problem and said:
I then clarified that this was a guardrail, not an order to ignore real bugs:
Sol again acknowledged the distinction.
But the execution trajectory did not materially reset. It continued adding analyzer/evidence requirements, regression cases, review gates, and integration work. This is the exact pattern described in #35131: the language layer accepts the correction, but the execution plan keeps following the old trajectory.
Eventually I asked:
At that point Sol said there was no code blocker remaining, that core was
242/242and the analyzer62/62, and that it was stopping further review. I then had to ask what those numbers even meant; they were individual test assertions, not 242/62 bugs or meaningful independent work items.I ultimately issued an explicit hard stop:
The original deliverable still was not cleanly finished: the deployment attempt had copied candidate files, then failed on a nonexistent
preview.png; post-copy hash verification had not run and no test ZIP had been created.Codex's own postmortem identified the failure very accurately
When I later demanded an explanation rather than an apology, Sol said:
It then described the loop it had created:
It also explicitly acknowledged that the two-plus hours were not caused by the tests themselves, but by iterative scope expansion and repeated agent/review cycles, and concluded:
That retrospective diagnosis is essentially correct. The concerning part is that Sol was capable of articulating the right stopping policy afterward, while failing to enforce it during execution even after I repeatedly supplied that policy in-context.
Why I think this is a model/agent-control bug rather than just prompting
The failure pattern was:
vaguely bounded task → self-created quality criterion → parallel audits → new finding becomes blocker → implementation creates new review surface → review finds another issue → definition of done moves againThe individual steps often sounded locally reasonable. Globally, they were no longer proportional to the user's requested task.
The particularly important behavior is plan inertia after correction: my corrections changed Sol's verbal framing (“scope frozen”, “guardrail understood”) much more than they changed the active execution graph.
The session did undergo automatic context compaction during the run, so context handling may be relevant, but I cannot establish that as the cause from this single case.
Behavior I would like to see tested/fixed
I have the full timestamped transcript and screenshots, including the
Worked for 2h 19m 7sresult and the repeated scope-correction exchanges, and can provide additional sanitized excerpts if maintainers want them.A newly released product always has issues. Testers are used as guinea pigs.
5.6 sol is absolutely infuriating to work with in recent weeks. I'm angry all the time.