惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Claude Opus 4.8 is out. The benchmark isn't why I'm switc...
Hunter G · 2026-05-29 · via DEV Community

Hunter G

Anthropic shipped Claude Opus 4.8 today. The benchmark numbers went up, as they always do. But that's not why I'm switching my default model, and I want to explain the part that actually changed how I work.

The numbers, quickly

Here's the official comparison:

Opus 4.8 vs Opus 4.7 vs GPT-5.5 vs Gemini 3.1 Pro

The highlights:

  • SWE-Bench Pro: 69.2% — up from 64.3% on 4.7, well ahead of GPT-5.5 (58.6%) and Gemini 3.1 Pro (54.2%).
  • Computer use (OSWorld-Verified): 83.4% — still the model to beat for clicking around real UIs.
  • Knowledge work (GDPval-AA): 1890 vs 1769 for GPT-5.5.
  • Reasoning (Humanity's Last Exam): 49.8% no tools / 57.9% with tools — top of the table.

And one I'll call out honestly: on Terminal-Bench 2.1, Opus 4.8 scores 74.6% and GPT-5.5 wins at 78.2%. 4.8 jumped a lot from its predecessor (66.1%), but it isn't first on that one. Pick your model for what you actually do.

The part that matters more than any benchmark

Opus 4.8 is roughly 4x less likely than 4.7 to let a code flaw pass without flagging it. It proactively points out uncertainty, questions sketchy inputs, and pushes back on plans it thinks are unsound.

That sounds small. It isn't.

When you hand work to an agent, raw capability was never the real bottleneck — silent failure was. The model that writes a subtle off-by-one and says nothing costs you more than the model that's slightly worse but says "I'm not sure this input is ever non-null, can you confirm?"

Concretely:

Before: it writes a function that looks clean, ships a hidden edge-case bug, says nothing. You find it in production.

After: it writes the same function and adds "there's an edge case here I'm not confident about — double-check the input is non-empty," or flat-out tells you your plan has a hole.

For anyone treating Claude as a coworker that ships work unattended, that calibrated honesty is worth more than a few benchmark points.

Three product changes worth knowing

  1. Dynamic Workflows (Claude Code research preview) — runs hundreds of parallel subagents for big jobs like migrating a codebase across hundreds of thousands of lines.
  2. Effort control (claude.ai, Cowork) — you pick how hard it thinks. Higher = deeper, lower = faster. The speed/quality trade-off is back in your hands.
  3. Messages API now accepts system entries mid-array without breaking the prompt cache — you can inject new instructions partway through a long task and keep your cache. If you build long-running agents, you already know why this matters.

Pricing didn't move

  • Regular: $5 / 1M input, $25 / 1M output — same as 4.7.
  • Fast mode: $10 / 1M input, $50 / 1M output — 3x cheaper than the previous fast tier, and it's still Opus, not a smaller model.

Databricks reported 61% lower token cost vs 4.7 on their workloads, because 4.8 uses tools more efficiently and takes fewer steps.

Model ID is claude-opus-4-8, available everywhere today.

My take

The next moat in agents isn't IQ. It's calibrated honesty — the model that tells you when it's unsure is the one you can actually delegate to. That's the upgrade I care about here.

Numbers and image from Anthropic's announcement. Full evals are in the system card.