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

推荐订阅源

C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
WordPress大学
WordPress大学
月光博客
月光博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - 司徒正美
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
Blog — PlanetScale
Blog — PlanetScale
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
L
LangChain Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
量子位

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
The New AI Workflow Is Not “More Agents”
Chris · 2026-05-22 · via DEV Community

The dev team that wins this year is not the one with the most bots. It is the one with the least confusion.

Your Codebase Is About To Get Crowded

AI is no longer sitting politely in a sidebar waiting for you to ask it a question.

That was the old workflow: open editor, highlight sad function, ask the model for help, paste suspicious answer, run tests, sigh.

This week’s dev chatter has the same signal: local models indexing archives, practical agent demos, AI deeper in daily tools, and developers talking about “comprehension debt.”

The real shift is not that models can write more code. We already crossed that bridge, burned half of it, and opened a ticket for the smoke.

The shift is that AI is becoming part of the team’s operating system. It reads issues, drafts patches, explains code, summarizes threads, generates tests, and proposes migrations.

Welcome to the fun part: your workflow now has coworkers that do not attend standup and will happily drive into a metaphorical flood if your guardrails are weak.

What Changed This Week

Developers are getting more comfortable with AI running closer to the metal: local indexing, repo-aware assistants, workflow-specific agents, and private retrieval over messy internal context.

At the same time, the skepticism is getting sharper:

  • What data is being sent where?
  • Can I reproduce this locally?
  • Does this agent understand the repo, or is it autocomplete wearing a little hat?
  • Who reviews the work when the bot made the boring part look finished?

The hype phase asked, “Can AI code?”

The useful phase asks, “Can this workflow reduce the number of bad decisions we ship?”

Why Real Teams Should Care

Most engineering teams do not fail because nobody can write a function.

They fail because nobody remembers why the function exists.

They fail because the onboarding doc lies by omission, the test suite encodes three product eras, and “simple refactor” means “summon the one senior engineer who knows where the weird billing edge case is buried.”

That is comprehension debt.

AI can reduce it by summarizing blast radius, finding hidden coupling, sketching migrations, and generating boring glue code. It can also deepen it by producing ten files that look plausible and make the fog thicker.

The dangerous AI workflow is not the one that fails loudly. It is the one that produces code everyone accepts because it looks normal.

AI-generated code does not remove review responsibility. It moves the review target from typing to judgment.

The Wrong Question: “Which Agent Should We Use?”

Tool choice matters, but it is not the center of the problem.

Asking “Which agent should we use?” too early is like asking which keyboard will fix your incident response process.

The better question is: where is human attention being wasted?

Look for work that is necessary but not judgment-heavy:

  • Searching the repo for similar patterns
  • Writing first-pass tests
  • Turning vague tickets into implementation checklists
  • Explaining legacy code to new contributors
  • Drafting PR descriptions

Those are good AI entry points.

Do not start by giving an agent permission to redesign your auth system because it passed a demo on a todo app. That is negligence with syntax highlighting.

The Better Playbook

Start with bounded tasks where failure is visible, review is cheap, and the output improves human decisions.

1. Give AI Narrow Jobs With Receipts

Bad prompt:

“Refactor this service.”

Better prompt:

“Find duplicated validation logic in these three files. Propose one extraction. Do not edit yet. Include file references and risks.”

Make the agent show its path: files, assumptions, tradeoffs, and test impact. If it cannot explain the work, it does not get to touch the work.

2. Treat Context As Infrastructure

Your AI workflow is only as good as the context it can reliably access.

That means boring artifacts matter: clear READMEs, architecture notes, decision records, issue templates, subsystem docs, and known failure modes.

But AI changes the payoff. A good architecture note is no longer something a human might read someday. It becomes material your tools can use every day.

Documentation is becoming part of the runtime for developer productivity.

3. Add Review Gates Where AI Is Most Convincing

So add friction around the shiny parts:

  • Require tests for generated code
  • Review dependency additions aggressively
  • Check security-sensitive code manually
  • Prefer small patches over heroic dumps

A 60-line AI patch with tests is a teammate. A 2,000-line AI patch titled “minor cleanup” is a haunted house with CI.

4. Use Local When The Data Is Weird Or Sensitive

Local models and local indexing are getting more interesting because many workflows involve context you do not casually fling across the internet: private repos, customer logs, internal videos, design docs, incident timelines.

Know which workflows belong close to the data. For many teams, the future is hybrid: cloud models for general reasoning, local retrieval for private context, and strict boundaries around what gets sent where.

That is less magical than “one agent to do everything.” It is also how adults ship software.

5. Measure Boredom Removed, Not Code Produced

Lines of code generated is a garbage metric.

Track better signals: time from issue pickup to first useful plan, time to understand an unfamiliar subsystem, PR review quality, test coverage on changed paths, clarification loops, incident follow-up completeness, and onboarding speed.

The goal is not to make developers type less. It is to help developers think at the right layer more often.

The Contrarian Take

The winning AI workflow may involve fewer agents than you expect. Not zero. Fewer.

A small set of boring, reliable workflows will beat a swarm of theatrical bots. One tool that explains blast radius is worth more than five agents opening pull requests like confetti cannons.

The future developer is still a builder. Just one with better instruments, sharper review habits, and less tolerance for mystery meat automation.

Ship The Boring Magic

This week’s signal is clear: AI is moving from novelty to workflow plumbing. That is where it gets useful.

Use AI where software work is full of expensive confusion: summarizing, comparing, explaining, drafting, testing, and producing small patches with evidence.

But keep judgment human, keep context clean, and keep the blast radius visible.

The best AI workflow is not the one that writes the most code. It is the one that leaves the team less confused after every change.