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

推荐订阅源

Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
V
V2EX
量子位
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 【当耐特】
爱范儿
爱范儿
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
小众软件
小众软件
IT之家
IT之家
博客园_首页
博客园 - 聂微东
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗

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
Even Anthropic didn't notice Claude got worse for weeks —...
cpengc1984 · 2026-06-16 · via DEV Community

cpengc1984

The company that ships the best coding model on the planet just published a postmortem worth sitting with: three innocent-looking config changes quietly degraded Claude's output — and it took weeks to track down.

If the team that knows AI best can fail to notice their own model getting worse, what makes a business think it can eyeball an agent's output and catch the rot?

Speed isn't in question. Whether the quality holds — and whether you'd even notice if it didn't — is the whole game.

Two signals: speed is settled, "is it still good?" is not

  • Anthropic's own postmortem. Their internal investigation confirmed that three independent changes in March–April 2026 — lowering Claude Code's default reasoning effort, a cache bug that wiped session data every turn, and a system-prompt revision aimed at reducing verbosity — collectively degraded output quality. Note: not model rot — config-layer drift, with no single alarm, found only weeks later via user feel and investigation.
  • Canva's CTO said plainly that "vibe coding" isn't fit to ship straight to production; core systems need the full loop of AI-generate → human dehydrate/restructure → test coverage → security scan. The real-world CTO failure log for "ship the AI output directly" includes DB query crashes, permission holes, broken auth flows, and off-by-one logic bugs.

Put together: speed, AI proved long ago. What's unsolved is that AI output quality drifts — silently — and you often don't know it drifted.

Why "you won't notice" is the real enterprise problem

The scary part of the Anthropic case isn't "a bug happened." It's that it stayed invisible for weeks. Each of the three changes looked reasonable alone; together they stepped quality down — with no single point of failure to page anyone.

Scale that to enterprise apps and it amplifies:

  • An agent opens dozens of PRs a day; every one "looks right."
  • Changes scatter across permissions, validation, reconciliation, approvals — each plausible in isolation.
  • Nobody can verify "did this batch actually get worse?" one by one.
  • By the time the business breaks (wrong totals, privilege escalation, a skipped approval), weeks have passed.

This is the Anthropic postmortem, structurally — just amplified. You can't "look harder" your way to AI quality, because regressions are often silent, cumulative, and spread across many spots. Anthropic of all teams got caught by exactly that.

Welding the quality floor into the architecture

This is the core idea behind Oinone — AI-native, but with rigor that doesn't depend on noticing; it lives in the architecture:

  1. The AI emits metadata, not code. "Add a 3-level approval to the quote object" produces a structured metadata diff of model/view/flow/permission — a few dozen readable lines, not a wall of code you can only "trust by vibe." Quality is scannable by eye, not inferred from feel.
  2. The quality floor is enforced by the framework, not by the AI's diligence. Permission model, data validation, transactional consistency, audit — the "drift here = serious incident" parts — are framework-enforced. The AI can't move them and can't route around them. It can't silently get worse there, because it never touches those red lines.
  3. Every change is diffable, rollbackable, traceable. Anthropic spent weeks localizing three changes; with metadata, each change is a structured diff — wrong, roll the whole thing back; what changed is obvious. "Needle in a haystack, after the fact" becomes "visible at commit time."
  4. Change once, consistent everywhere. A model change derives UI/API/permissions in sync — no "changed the field, forgot the permission," the most classic silent regression, and exactly the kind of "multi-spot, no single alarm" drift the Anthropic case is made of.

One line: Speed by AI, rigor by Oinone. AI quality drifts and degrades silently — that's its nature, Anthropic included. Oinone doesn't bet on you catching it; it welds the quality floor into the foundation so the output simply can't drift into the danger zone.

Three questions for anyone evaluating tools

  1. How do you know this batch of AI output didn't quietly get worse? Human feel and after-the-fact investigation (Anthropic took weeks), or a structured diff that makes regression visible at commit time?
  2. Who backstops the quality floor? Hoping the AI and devs "remember to do it right," or a framework layer the AI can't even reach?
  3. Would you hand a core system to an AI that can silently degrade? A wall-of-code system lets you wait for the incident; a metadata-driven, framework-backstopped one keeps the high-risk zone out of the AI's drift range entirely.

FAQ

Q: What actually happened at Anthropic?
A: Per their postmortem, three independent March–April 2026 changes (lower default reasoning effort in Claude Code, a cache bug wiping session data each turn, a system-prompt trim) stacked up and quietly lowered output quality — found only weeks later. AI quality regressions can be silent, cumulative, and spread across many places.

Q: What's this got to do with low-code / Oinone?
A: Building apps with AI hits the amplified version of the same problem — lots of agent output, all "looks right," silent drift. Oinone makes the AI emit architecture-constrained metadata, with the quality floor (permissions/validation/consistency) enforced by the framework — not dependent on "noticing in time."

Q: Is it open source?
A: Yes (AGPL-3.0). One docker compose and it's up in ~5 minutes; self-hosted, data never leaves your environment. It runs in the core systems of billion-scale enterprises.


If this framing helped, the project is open source (AGPL-3.0) — a ⭐ supports the maintainers:

(Disclosure: I work with Oinone.)