dev.toJuly 25, 2026
Modelo

Claude Opus 5 Just Topped Every Leaderboard. HN's Comments Tell the Real Story

Opus 5 hit #1 on every leaderboard and 866 HN comments in a day. The press release has the benchmarks. The comment section has the actual pricing math, the guardrail complaints, and the "I'm tired boss" sentiment that matters more.

Anthropic shipped Claude Opus 5 on July 24. Within a day it had 1,500+ points and 866 comments on Hacker News — more than triple the next biggest story that week. It's now #1 on the Artificial Analysis Intelligence Leaderboard. The press release reads like every other frontier model launch: bigger numbers, better benchmarks, "frontier-class" everything.

Skip the press release. The comment section is where the actual signal is, and it's more interesting than the launch post.

The numbers, quickly

  • **96.0%** on SWE-bench Verified, **79.2%** on SWE-bench Pro
  • **43.3%** on FrontierBench v0.1 at max effort — more than double Opus 4.8
  • **30.2%** on ARC-AGI-3, roughly 3x the next-best model
  • SWE-bench Multimodal jumps from 38.4% → 59.4%
  • Pricing unchanged from Opus 4.8: **$5/M input, $25/M output**, Fast Mode at 2x price for ~2.5x speed
  • Lowest "misaligned behavior" score of any recent Anthropic model (2.3)

Those are real gains. Doubling FrontierBench in one release is not a rounding error. But the number nobody's arguing about is pricing, and the number everybody's arguing about is *value per dollar at a given effort level* — and that's where it gets fun.

The actual innovation: effort is now a dial, not a model name

The headline feature isn't a benchmark score, it's that Opus 5 exposes effort as a tunable knob — `low` / `high` / `xhigh` / `max` — instead of forcing you to pick a different model name for a different cost/quality tradeoff:

python
response = client.messages.create(
    model="claude-opus-5",
    effort="high",  # low | high | xhigh | max
    max_tokens=4096,
    messages=[{"role": "user", "content": "Refactor this auth module and explain the diff."}]
)

That's the right abstraction. You shouldn't have to swap model families to decide "I want this cheap and fast" vs "I want this to actually think." Baking effort into the API instead of the model card is the kind of change that matters more long-term than a 2-point SWE-bench bump.

Now here's what HN actually said

The top comment thread isn't "wow, amazing." It's a pricing audit. One commenter did the math across effort tiers and found the comparisons aren't as clean as the launch post implies:

> "Opus 5.0 'max' is $2.03. Opus 5.0 'high' … is $1.06, less than the $1.80" for comparable Opus 4.8 performance.

Translation: Anthropic's own effort tiers overlap in cost/performance in ways that make cross-model comparisons genuinely hard to pin down — and that's *before* you bring in competitors. Another thread ran the same exercise against GPT-5.6:

> GPT-5.6 Sol Max scores 59 on the intelligence index for roughly half the cost of Opus 5 Max, which scores 61.

A 2-point intelligence-index lead for 2x the price is not the slam dunk the leaderboard screenshot suggests. If you're an engineering lead deciding where to route production traffic, "we're #1" is not a line item — cost-per-solved-task is, and that number depends entirely on which effort tier you're actually w

Read full article on dev.to