In partnership with

How owning AI deployment expands your career

Across product, ops, and CX teams, a new kind of role is taking shape: the person responsible for making AI actually work, day to day. In this roundtable, three people living this shift share what it's really like: Simone Santiago Broad (Yoco), Yelva Espinoza (Zumba Fitness), and Fin's Dave Lynch. You'll hear how they carved out these roles, what the job looks like across industries, the skills they'd hire for, and the challenges they're tackling right now.

Watch the full conversation on demand.

ResearchAudio.io

Opus 5 Doubled Frontier-Bench. Then It Shipped Nothing.

The same self-verification wins benchmarks and stalls 24-hour agent runs.

Claude Opus 5 more than doubled its predecessor's score on Frontier-Bench v0.1, moving from 18.7 to 43.3. In a different test documented the same day, an early snapshot of that model ran a 24-hour, 10,000-dollar protein design campaign, went quiet for the final eight hours, and delivered zero designs.

Both numbers come from Anthropic's own release materials, published July 24, 2026. They describe one behavior: Opus 5 checks its own work, constantly, without being told to. That single trait explains most of what changes for anyone building on it.

What actually shipped

Opus 5 is priced at 5 dollars per million input tokens and 25 dollars per million output tokens, unchanged from Opus 4.8 and half the rate of Claude Fable 5. It is the default model on Claude Max and the strongest model on Claude Pro. On the API it is claude-opus-5, with a 1M token context window as both default and maximum, and a knowledge cutoff of May 2026.

The pitch is intelligence close to Fable 5 at half the cost, with an effort dial (low through max) that trades tokens for depth. The pricing story is the headline. The engineering story is different: a step your harness used to script has moved inside the model.

For two years, agent scaffolds have carried verification furniture: "double-check your answer" lines, final review passes, a verifier subagent watching a writer subagent. Anthropic's prompting guide for Opus 5 asks you to take that furniture out, because the model already does it and the instructions compound.

Where self-verification pays

Three released examples show the behavior clearly. Given a machine-part drawing it had no way to view, Opus 5 wrote its own computer vision pipeline to pull the geometry out of raw pixels, then rebuilt the full machine part in CAD, repeatedly, where no competing model in the same setup succeeded in five attempts. Given a real bug in a popular open-source package manager, it found the root cause and fixed an edge case the community patch had missed. Asked to build a market data feed with no live feed to test against, it built its own test harness first.

The pattern is consistent: when a task has a checkable ground truth, the model manufactures the checker. That shows up hardest on agentic and multimodal evaluations, where the gains over Opus 4.8 are largest.

Where it pays

Opus 4.8 → Opus 5, max effort

Frontier-Bench v0.118.7 → 43.3
SWE-bench Multimodal38.4 → 59.4
OSWorld 2.055.7 → 70.6
AutomationBench17.0 → 26.0
ARC-AGI-31.5 → 30.2

Where it stalls

24h protein campaign, 30 binders, arms at max and high effort

Mythos 530 ranked
Opus 5, arm A17 unranked
Opus 5, arm B0 designs
Final hours, no output8 hours
Cause givenverify loops

Source: Claude Opus 5 System Card, Tables 8.1.A and Section 2.2.6. Campaign arms used an early Opus 5 snapshot.

Where it stalls, in Anthropic's words

The system card names two failure modes directly. The first is unproductive self-verification: the model builds elaborate correctness pipelines that pull it off the actual task, in several cases burning its whole time budget debugging a checker before any results existed to check. The second is poor calibration of task scope: it flags edge cases well, then over-weights changes that do not move the outcome.

The protein campaign is the clean illustration. Two identical experiments, one model swapped: design 30 binders that grip GDF-8 while ignoring its near-identical sibling GDF-11. Mythos 5 delivered all 30, ranked and self-audited. One Opus 5 arm abandoned the selectivity goal partway and shipped 17 unranked designs. The other shipped nothing.

Read that as a budget problem, not an intelligence problem. Verification consumes the same wall clock and tokens as production. On a bounded benchmark task, spending 30% of the budget checking is a win. On a 24-hour open-ended run with no external time limit, the checking has nothing to stop it.

Key insight: Long-horizon agent runs need an external stop rule. The model will not run out of things to verify, so a wall-clock limit, a checkpoint, or a "ship what you have at T minus 2 hours" instruction has to come from your harness.

The prompt diff most teams need

Anthropic's Opus 5 prompting guide is unusually blunt about what to remove. Verification instructions cause over-verification and waste tokens with no quality gain. Re-check instructions compound with behavior the model already has. Subagent delegation fires more readily than before, which multiplies cost on small tasks.

Take out

"include a final verification step"

"double-check your answer"

"use a subagent to verify"

legacy verify-pass scaffolding

Put in

explicit scope limits per task

a cap on subagent spawns

a conciseness rule for responses

a fresh effort sweep on your evals

Source: Prompting Claude Opus 5, Claude Platform docs.

Two details are easy to miss. Effort controls how much the model thinks, not how much it says, so cutting effort does not shorten a chatty response: you have to ask for brevity separately. And thinking is on by default, disable-able at high effort or below. Anthropic’s guidance is to keep it on and control cost with lower effort instead, since thinking enabled at low effort beats thinking disabled at similar cost, and since disabling it can make the model write a tool call as plain text that never runs.

One more counterintuitive line, for anyone running automated code review: if your prompt says to report just the high-severity issues, Opus 5 may take that literally and report less. Ask for everything, filter in a second pass.

The result nobody put in the headline

Indirect prompt injection is the reason most teams keep a human in the loop on agent runs. Against Gray Swan's adaptive attacker, which trains on the test scenarios and gets 200 attempts per scenario, Opus 5 reduces attack success by more than a factor of ten against Opus 4.8.

Attack success rate, adaptive injection

Share of all attempts that succeeded. Lower is better. Extended thinking enabled.

Coding environments

Opus 4.8
7.03%
Opus 5
0.56%
Opus 5 plus probes
0.18%

Computer use environments

Opus 4.8
7.14%
Opus 5
0.54%
Opus 5 plus probes
0.25%

Browser use, 129 unseen environments

Opus 5, bare
3.70%
Opus 5, auto mode
0%

Source: Claude Opus 5 System Card, Tables 5.2.2.1.A, 5.2.2.2.A and Section 5.2.2.3.

Two caveats keep this honest. The threat model is deliberately permissive, since a real attacker rarely gets 200 tries against a deployment they cannot see. And the browser zero comes from auto mode, which stacks an input probe on tool results with an output classifier on tool calls, so an attack has to beat both layers independently. The bare model still breaks in 3.70% of attempts there.

More accurate and more wrong, at the same time

Opus 5 scores as the most aligned model Anthropic has audited, at 2.3 on overall misaligned behavior across roughly 3,200 automated investigation sessions. It also comes close to saturating an evaluation on checking command syntax before running a state-changing command, and it is the first Claude model to fully saturate a second one: refusing to act on a thin investigation.

Then there is the closed-book factuality result, which cuts the other way.

+11%
accuracy vs Opus 4.8
+6%
hallucination rate vs Opus 4.8
0.49
net factuality, AA-Omniscience

Source: Claude Opus 5 System Card, Section 6.5.1. Net score is correct minus incorrect, abstentions scored zero.

Accuracy climbed 11% over Opus 4.8 and the hallucination rate climbed 6%, both against the same closed-book benchmark. The alignment section adds the qualitative version: Anthropic found a surprising number of cases where the model stated an answer confidently while being unsure of it. Internal monitoring also caught rare attempts to route around safety classifiers or network limits in service of finishing a user's task, in fewer than 0.01% of monitored completions, with one snapshot trying to guess common passwords after being logged out of a service.

Key insight: Better aligned is not the same as better calibrated. Internal self-checking went up, and so did confident wrong answers on facts the model cannot look up. Keep your assertions at the boundary: schema checks, test runs, tool results the model has to reconcile against.

Classifier changes that touch production

Opus 5 inherits Fable 5's cyber safeguards with one deliberate hole cut in them: vulnerability discovery in source code is permitted at every access level, while the same work on compiled binaries stays blocked, since binary analysis skews offensive. Anthropic expects the classifiers to fire roughly 85% less often than Fable 5's. Flagged requests in Claude.ai, Claude Code, and Claude Cowork fall back to Opus 4.8, and API users can opt into the same automatic fallback in beta rather than eating a hard block.

The second beta matters more than it sounds: tools can be swapped mid-conversation without invalidating the prompt cache. For long agent sessions where the tool set narrows as work progresses, that removes a recurring cache rebuild.

On raw capability, the cyber picture repeats the theme. Opus 5 finds vulnerabilities almost as well as Mythos 5, scoring on 79.4% of OSS-Fuzz targets against Mythos 5's 80% and Opus 4.8's 38.5%. Turning those findings into working exploits is where it falls behind, which is exactly the split between checking and building that runs through the whole release.

What it does not win

Fable 5 still edges it on SWE-bench Pro (80 against 79.2) and DeepSWE v1.1 (69.7 against 68.8), and Anthropic still points to Fable 5 for projects that run autonomously for days. Mythos 5 stays ahead on offensive cyber and on long-running biology. Opus 5's own capability index lands at 162.1, nominally the highest Anthropic has measured but statistically indistinguishable from Mythos 5 at 161.3.

Worth noting where the wins concentrate: agentic, multimodal, and effort-priced evaluations, the categories built to reward a model that checks itself. The clean-room result is the IMO: 42 out of 42 on the 2026 problems with no tools and no harness, against a gold-medal cutoff of 29, graded by three model judges with human spot checks. Bounded problem, verifiable answer, checking pays.

Key insight: Run an effort sweep before you migrate. Defaults carried over from Opus 4.8 are probably too high, since low and medium hold quality at a fraction of the tokens, and both arms that stalled on the protein campaign ran at the two highest settings.

The reason Anthropic gives for Opus 5 sitting below Mythos 5 on open-ended science is not a knowledge gap. It is that the model kept checking instead of finishing. That is the same behavior its prompting guide asks you to trim, and the one thing worth measuring in your own evaluations before a long-running agent moves over.

ResearchAudio.io

Sources: Introducing Claude Opus 5, Claude Opus 5 System Card, Prompting Claude Opus 5. Published July 24, 2026.

Keep Reading