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

推荐订阅源

F
Fortinet All Blogs
罗磊的独立博客
IT之家
IT之家
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
博客园 - 聂微东
博客园_首页
爱范儿
爱范儿
量子位
博客园 - 三生石上(FineUI控件)
G
Google Developers Blog
Martin Fowler
Martin Fowler
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator Blog
Vercel News
Vercel News
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
Engineering at Meta
Engineering at Meta

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
Code Churn Doubled While We Were Celebrating AI Speed Gains
Nijat · 2026-05-16 · via DEV Community

The number that should worry you

AI now generates roughly 41% of all code in professional workflows. Code churn — lines reverted or substantially rewritten within two weeks of being merged — has doubled from 3.3% to 7.1%, according to GitClear's analysis of over 211 million lines of code.

Meanwhile, Google's 2024 DORA report found that delivery stability decreased 7.2% year over year. More code ships. More of it breaks.

These aren't contradictory trends. They're the same trend.

We optimized the wrong bottleneck

Writing code was never the bottleneck in professional software development. Understanding it, reviewing it, and making good decisions about whether it should ship — that's where time actually goes.

AI made the fast part faster. But DORA metrics alone can't tell you whether throughput gains are real or just inflated volume. As multiple 2026 analyses have pointed out, traditional metrics like PRs merged and deployment frequency get inflated by AI output without necessarily indicating more value delivered.

High-performing teams review PRs within 4 hours. When AI-assisted workflows double or triple PR volume, maintaining that review cadence becomes structurally impossible unless something changes about how you triage, prioritize, and process code reviews.

The review bottleneck is measurable

Research from the MSR 2026 conference on agent-authored PRs found a stark pattern: 28.3% of AI-generated PRs merge almost instantly (low-friction automation), but once a PR enters the iterative review loop, it often demands disproportionate reviewer attention. Simply gating the riskiest 20% of PRs can capture 69% of total review effort.

That's an actionable insight. But most teams can't act on it because they don't have visibility into PR risk across repositories. They're still switching between tabs, manually checking CI status, and guessing which PRs need attention first.

What actually helps

The answer isn't slowing down AI adoption. It's building better signal around what ships.

  • Track code churn alongside velocity. If both are rising, your net productivity gain is smaller than it looks.
  • Measure PR pickup time. The gap between opening a PR and first review is often your biggest hidden bottleneck.
  • Triage by risk, not by order. Not every PR deserves the same review depth. Automated risk scoring — based on diff size, sensitive files, CI status — helps reviewers focus where it matters.
  • Get cross-repo visibility. If your team works across 10+ repositories, per-repo dashboards fragment your ability to see the full picture.

This is the exact problem Code Board was built to address: a unified view of every PR across every repo, with risk scores and CI intelligence that help teams prioritize reviews instead of drowning in volume.

The teams that win the AI era won't be the fastest at generating code. They'll be the ones who can still tell the difference between output and progress.