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

推荐订阅源

月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
博客园 - 聂微东
V
Visual Studio Blog
博客园_首页
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
F
Fortinet All Blogs
C
Check Point Blog
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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
When the agent codes in seconds, CI becomes the slow neig...
Leo · 2026-06-27 · via DEV Community

Leo

Last week I caught myself doing something embarrassing. I asked an agent to scaffold a small handler, watched it return a tidy diff in roughly the time it takes to refill a glass of water, and then I sat there waiting on pull-request CI to tell me a brace was in the wrong place. The author of that code was faster than the reviewer of that code by two orders of magnitude, and the reviewer was a YAML file I had been quietly proud of.

DevOps.com ran an opinion piece this week titled "AI Coding Agents Are Pulling CI Feedback Into the Inner Loop", and it named the thing I had been refusing to name. The piece frames CI/CD the way we built it: humans in the inner loop, pipelines in the outer one. Agents generate code in seconds. Waiting for pull-request-stage CI to handle validation, tests, code review and standards checks no longer keeps pace with the author.

I wanted to push back on that. I cannot.

The split that used to make sense

The inner loop and the outer loop were a sensible deal. You typed, you ran a few things locally, the gate that everyone agreed on lived in CI where the environment was a known quantity. Running every check on every keystroke was unbearable, so we deferred the deep work to a pull request. The pull request became the seam where async machinery did the heavy lifting while the author moved on to something else.

That deal assumed the author was a person who took minutes to write a function. Strip out that assumption and the seam stops holding. The author now produces a coherent diff while you are still composing the prompt, and the heavy lifting of CI is suddenly the part of the loop you can see, second by second.

What "moving in" actually looks like

The honest version of pulling checks into the inner loop is not glamorous. It looks like running lint on the agent's diff before the agent declares itself done. It looks like the unit tests for the files the diff touched firing while the next prompt is being typed. It looks like a policy check telling the agent "this dependency is not on our allowlist" before you spend a round trip on it. Static analysis. SCA. The stuff that used to live in jobs you watched a status indicator for.

That work has to happen somewhere the agent can read the result and react. Otherwise the agent ships five iterations of the same broken pattern because nothing in the loop is telling it to stop.

The rough edge I keep getting stuck on

CI earned its trust by being hermetic. A fresh container, pinned versions, a known cache. If you take those checks out of CI and run them inside the agent's session on a developer laptop, you get the problem CI was invented to solve. "It passed for me." "It linted on my branch." The agent loop has to inherit the hermeticity the pipeline had. Otherwise you are not shortening the loop, you are hiding the noise inside it.

There is a second cost nobody loves to talk about. Every check you pull in costs latency in the inner loop. If lint, tests and a policy engine each take a couple of seconds, the agent's quick turn is no longer quick. Some of that is fine. Some of it will quietly motivate engineers to disable the slow checks locally, just to keep the agent feeling responsive, and now your floor is lower than the one CI was holding.

Where I land on it

I am with the piece. Waiting on pull-request-stage CI to surface a brace problem in agent-authored code is a workflow I cannot defend on a Tuesday afternoon. Move the cheap, deterministic checks in. Lint. Unit tests for touched files. The license check that already runs in under a second. Let the agent see the result and try again before it asks for human attention.

Keep the expensive, environment-sensitive checks where they have always belonged. Integration tests with real services. Build provenance. The SCA scan that wants a fresh container and a stable mirror. The outer loop is not going away. It is going to become the layer that confirms what the inner loop already believes.

What I am watching next

Two things. First, whether the tools that already live in the inner loop (formatters, language servers, pre-commit) get a serious agent-readable mode, with structured output the agent can parse instead of a wall of stderr. The signal needs to be machine-shaped now, because the consumer is. Second, what happens to the CI job that is, in practice, "wait for lint". A lot of pipelines have one of those. When it goes, the rest of the pipeline gets to be about the things only CI can do, and that is the version of this story I want to read in six months.