Here is a failure mode that almost no automation tutorial warns you about: the model behind your workflow can get worse, quietly, with no version change, no announcement, and no changelog. It is not hypothetical. It happened, and the company involved said so out loud.
What happened
Anthropic published the results of an internal investigation confirming that three separate changes, made between March and April, collectively degraded Claude's output quality. The culprits were unglamorous: the default reasoning-effort level in its coding tool was lowered; a cache-optimization bug cleared session data every turn; and a system-prompt revision aimed at reducing verbosity had side effects. All three have since been reverted, and the company pledged better internal testing and more transparent communication. Credit where due, admitting it is rare. But sit with the implication.
Why this breaks automations specifically
A one-off chat with a slightly worse model is an annoyance. An automation is different. It runs unattended, at volume, often with no human reading each output. If the model behind your support-triage flow, your contract-extraction step, or your lead-scoring logic silently drifts, the failures pile up invisibly, mis-routed tickets, missed clauses, bad scores, until something downstream breaks badly enough to notice. By then you have a backlog of quietly wrong results and no obvious cause, because nothing in your setup changed.
How to protect yourself
Log outputs over time. You cannot detect degradation you never recorded. Keep samples of real outputs with timestamps so you can compare "then" to "now."
Pin versions where you can, and read the fine print where you cannot. Use dated or pinned model versions for production when the provider offers them, and treat any "same model, now improved" update as a change to be re-tested, not trusted.
Keep a human in the loop on the consequential steps. The higher the stakes of a decision, the less you want it running fully unattended on a dependency that can shift without notice.
The deeper point connects to a theme we return to often: the free tutorial that shows you how to wire an automation together almost never shows you how to keep it trustworthy over time. "It worked when I built it" is not a maintenance plan. The model is a live dependency you do not control, treat it like one.
Put This Into Practice
Knowing how to build an automation is step one. Keeping it trustworthy as the model shifts underneath it is the real work, and it's exactly what our guides and support are built to cover.
Browse All Guides → Unvarnished Reviews →Source: AI Pulse · Where This Breaks · workplaceai.ai. Built from Anthropic's published investigation into March–April quality regressions in Claude (the lowered default reasoning effort, the cache bug clearing session data, and the verbosity-focused system-prompt change, all since reverted). The mitigation practices are general guidance applicable to any model-dependent automation.