Claude Opus 5.5 has become more autonomous at coding
Claude Opus 5.5Claude Codeагентное программирование
What changed in Claude Opus 5.5
Looking at Claude Opus 5.5, I see more than a cosmetic update. It is an attempt to make the model more reliable during long autonomous runs. Anthropic introduced it on September 22, 2026, as a model for extended agentic work in programming and knowledge tasks.
Anthropic's announcement lists a 1M-token context window, a maximum output of 128K tokens and adaptive thinking enabled by default. The model is available in Claude, Claude Code, Claude Platform and through major cloud providers. Claude Code 2.1.280 release notes also position it as the standard Opus model, so it immediately appeared in CLI-based workflows.
At launch, pricing was $4 per million input tokens and $20 per million output tokens. Opus 5 cost $5 and $25 respectively, while cache reads in Claude Code were priced at $0.20 per million tokens. For a long-running agent, that gap matters more than an impressive number from a one-off benchmark: costs accumulate with every cycle of reading, reasoning and fixing.
Anthropic claims more than 30% faster output and roughly 40% lower typical task costs compared with Opus 5. Published scores include 66.4% on Terminal-Bench 4.0, 54.4% on FrontierCode v1.1 and 57.8% on CursorBench 4.0. These are launch-material results, not a substitute for testing on your own repository.
The most interesting detail came from a user report: the model completed a substantial task in three hours, produced more readable code and used its limit more slowly. It also added conditional console.log() statements for debugging on its own, despite receiving no direct instruction to do so. That starts to look less like faster autocomplete and more like choosing the next engineering action.
Why autonomy matters more than speed here
For long tasks, the key shift is a reduced need to steer the model manually. When an agent can diagnose a problem, add observability and continue working, it reduces not only generation time but also the number of human interventions.
A large context window helps keep the codebase, decision history and tool results in a single working process. More economical limit usage makes that cycle more practical, especially alongside the expanded five-hour limits for Pro, Max and Team plans announced at launch.
Still, I would not turn one successful project run into a universal conclusion yet. Automatically added debugging output can be a good decision, but it can also clutter code or expose unnecessary data. You need to inspect not only the final result, but the agent's intermediate actions as well.
Opus 5.5 looks like a meaningful step forward if its claimed autonomy holds up across different repositories. The main question is no longer whether the model can write code, but how long you can let it work without getting in its way.