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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
量子位
雷峰网
雷峰网
宝玉的分享
宝玉的分享
V
Visual Studio Blog
博客园_首页
小众软件
小众软件
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
S
SegmentFault 最新的问题
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学

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 Code didn't get worse. The harness did. And that e...
Anil Kurmi · 2026-05-16 · via DEV Community

For two months, the same complaint kept showing up on every developer forum I read: Claude Code feels worse. Sometimes worded politely, sometimes not. The vibe was unanimous enough that I almost started believing it on reputation alone.

Then on April 23, Anthropic published a postmortem that I think ends this whole class of complaint as a useful conversation. Read it. Even if you don't ship anything with Claude. Especially then.

Here's the position I'll defend: "the model got worse" is no longer a credible developer complaint without evidence. The Anthropic postmortem is proof that the user experience of an LLM product can degrade severely without anyone touching the weights. From now on, the responsible reply to "Claude feels worse this week" is show me the harness diff, not the model card.

What actually broke

The thing that should make every AI product engineer sit up: none of the three regressions were model weights. They were all in the layer most teams treat as boring infrastructure.

Regression 1 — reasoning depth got quietly downgraded. On March 4, Anthropic moved the default reasoning effort from high to medium to cut latency. Users reported lower intelligence. The complaints were real. The model was the same. The default wasn't. They reverted on April 7.

Regression 2 — a caching bug ate prior reasoning. On March 26, an intended one-time clearing of old thinking in stale sessions was applied repeatedly. So context kept getting amputated mid-conversation. The model felt forgetful because it actually was forgetting. Fixed April 10.

Regression 3 — a brevity instruction tanked coding output. On April 16, a strict length nudge in the system prompt went out. It looked harmless. It wasn't. Anthropic's own expanded evals showed measurable coding quality drops. Reverted April 20.

The whole stack was clean again by April 20 in v2.1.116. InfoQ's writeup is a useful secondary read, but the original is better because it gives you the timelines.

Why this is the most important engineering document of 2026 (so far)

I don't say that lightly. Three reasons.

One: it kills the lazy mental model. Most teams I talk to debug AI features the way they debug a database query — assume one thing changed, find that one thing. Anthropic's incident shows the product layer is now a distributed system with its own failure modes: defaults, caches, prompts, all moving independently, on different timelines, affecting different traffic slices. You can't reason about it like a single component anymore.

Two: it sets a transparency precedent that other labs now have to match. Once one major lab publishes timelines, root causes, eval deltas, and reversion dates for a quality regression, the others can't keep claiming "we don't comment on user feedback." The bar moved.

Three: it implies that most teams shipping LLM products lack the reliability tests they need. If three independent changes can pass review and ship without anyone catching the cumulative quality cost, that's not an Anthropic problem. That's a we as an industry haven't figured out evals for harness changes yet problem. I would bet most teams reading this have a CI that runs unit tests on prompts approximately never.

The thing I want every AI product team to internalize

Your model isn't your system. Your harness is your system.

The harness is:

  • which model variant you call by default
  • which reasoning depth you allow by default
  • what survives a cache hit and what doesn't
  • what the system prompt nudges
  • which tools are allowed in which contexts
  • what the timeout / retry / fallback shape is

If you don't have an eval that runs when any of those change, you are flying blind. The model is the input. The harness is the product. Treat changes to the harness like you treat code changes — with reviews, rollout gates, eval deltas, and a rollback playbook.

I think this is going to become the new bar for what "shipped responsibly" means in AI products. The teams that take it seriously this year will be the ones that look stable in 2027. The teams that don't will spend 2027 explaining quality regressions to angry users without any real diagnostic ability.

What I want pushback on

I want to be honest about where I might be overclaiming.

The skeptical read is: "Sure, this incident was harness-side. That doesn't mean all user complaints are harness-side. Some models really do degrade over time — distillation cycles, RLHF drift, evaluation Goodharting." That's fair. I'm not claiming model weights are sacred. I'm claiming the burden of proof flipped.

When someone says "the model got worse," the productive next question is: can you share a prompt + output that was good last month and bad this month, with timestamps? If they can, you have evidence. If they can't, you're working from vibes and the harness is the more likely culprit.

Where I want disagreement: if you think the harness-vs-weights distinction is too clean — that they're entangled in ways that make the framing misleading — I want to read your argument. I'm leaning hard on the separation. Convince me it's fragile.

What this changes for engineers shipping LLM features

Concrete actions worth doing this quarter, in priority order:

  1. Inventory your harness surface. Write down every knob: default model, default reasoning depth, system prompt, cache TTL, retry policy, tool-allow lists. You should be able to hand a new engineer one page that tells them what your product actually sends to the model.
  2. Build a harness eval that runs on every change to any of those knobs. Doesn't have to be fancy. 50 representative prompts with golden outputs is enough to start. The point is catching regressions before users do.
  3. Treat prompt edits as production changes. Reviews, rollout gates, the works. Yes, even the "just one more sentence" edits.
  4. Log enough trace data to reproduce a complaint. Session ID, prompt version, model variant, reasoning depth, cache state. When a user says "this got worse," you should be able to pull up the actual call.
  5. Write your own postmortems publicly. Anthropic raised the bar. The teams that meet it will earn trust that the silent ones can't.

If your team has shipped a quality regression in an LLM product and survived it, I'd love to know what you learned — especially the first thing that broke. My guess is it almost always wasn't the model.

Further reading