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

推荐订阅源

J
Java Code Geeks
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
B
Blog
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
月光博客
月光博客
H
Help Net Security
V
Visual Studio Blog
量子位
A
About on SuperTechFans
博客园 - Franky
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog

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
Your AI writes code faster than you can review it. Now what?
Joshua Miller · 2026-06-24 · via DEV Community
Cover image for Your AI writes code faster than you can review it. Now what?

Joshua Miller

For two years we argued about which model writes the best code. That argument is mostly settled, and it created a new problem. The agent now produces working code faster than any human can read it.

So the bottleneck moved. It used to be writing. Now it is trusting.

Most teams react in one of two ways, and both are wrong.

  • Review everything the same way. Every change waits in the same queue for the same full human review. A one-line copy fix sits behind a payments refactor. The speed you gained from generation is lost to the backlog.
  • Review almost nothing. The agent seems confident, so changes get waved through. Then authentication, money, or regulated data ships without the judgment it needed. Confidence is not correctness.

The idea: graduate the review

Graduated Review Authority (GRA) drops the single fixed path. Instead, the amount of review a change gets scales with two things: the risk it carries and the strength of the evidence that it is correct.

A trivial change that passes every automated check does not need the same scrutiny as a change to how payments are calculated. GRA makes that difference explicit and consistent.

The core rule is one line:

Generation is not authority. The pipeline is the authority.

Anyone can write code, a person or an agent. Producing it does not grant permission to ship it. Approval comes only from passing validation that was fixed before the change was written. A model can propose. It cannot grant itself passage.

How a change earns a lighter review

GRA weighs three kinds of evidence, strongest first:

  1. Deterministic gates. Types, tests, security scans, policy checks. Same answer every time, so a failure blocks outright.
  2. Agent review. Useful but probabilistic, and only counts when the reviewer is independent of the author.
  3. Human review. Reserved for what machines cannot settle: risk, ambiguity, architecture, intent.

Some categories always route to a person no matter how clean the gates are: auth, money movement, regulated data, destructive migrations, and broad architectural change.

And the authority is graduated, not granted once. A class of change that builds a clean track record earns a lighter touch. One that produces regressions or escaped defects earns more oversight. Crucially, the system can only ever tighten review below the floor that risk demands. It never loosens past it.

Why I think this matters

The honest version of "AI-native delivery" is not "let the agent ship." It is "spend human attention where it actually changes the outcome." GRA is one way to decide where that is, on purpose, instead of by reflex.

The full write-up is at gra.dev. It is a single page, no signup. I would genuinely like to hear where you think it breaks.