Claude Opus 5 and the Shift to Long-Running Agents
What Anthropic's Claude Opus 5 launch means for coding and professional work, plus the controls required for longer autonomous tasks.
Affiliate disclosure: This article may later contain clearly labeled affiliate links. Our reporting and conclusions are not sold. Read the full policy.
What changed
Anthropic introduced Claude Opus 5 as an Opus-tier model aimed at long-running agents, coding, and professional work. The launch continues a broad industry move from answering a prompt toward completing a sequence of connected tasks.
Longer autonomy is useful only when the system can preserve intent, recover from failure, and make its work inspectable.
Why it matters
A ten-minute agent run creates different risks from a ten-second response. It can accumulate wrong assumptions, modify more files, consume more budget, and encounter untrusted instructions in documents or websites.
The right safety question is not whether the model is generally capable. It is whether the specific workflow has checkpoints that limit the cost of being wrong.
Design the boundary first
Classify tools into read, prepare, and commit groups. Reading a repository is different from pushing a release. Drafting an email is different from sending it. Looking up an invoice is different from paying it.
Start Opus 5 with broad read access, narrow prepare access, and no irreversible commit access. Add permissions only after logs show reliable behavior on repeated tasks.
Evaluation tasks
Use a task that takes a skilled person at least thirty minutes and has an objective finish line. For code, require tests and a diff review. For research, require primary sources and a claim table. For a document, require a rendered output and a checklist against the brief.
Record pauses, recoveries, unnecessary tool calls, and changes made outside scope. The model should not receive credit merely for producing a plausible final message.
The practical conclusion
Claude Opus 5 is designed for work where persistence matters. That makes it interesting for complex production tasks and a poor excuse for removing oversight. Longer runs should produce stronger evidence, not longer chains of invisible decisions.
Primary source: Anthropic model announcement. Last reviewed September 11, 2026.