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

推荐订阅源

云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
博客园 - 司徒正美
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News
博客园 - 聂微东

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
AI coding agents are growing up. Most workflows are not.
Jenuel Oras · 2026-05-19 · via DEV Community

AI coding agents are moving from autocomplete into long-running developer workflows. That creates real leverage, but only if teams add security boundaries, logging, review habits, and operational discipline.


AI coding agents are starting to feel less like autocomplete and more like junior teammates who never sleep. That sounds exciting until you ask the boring questions: Where did the agent get its context? What did it change while you were away? Who reviewed the dependency it installed at 2:14 in the morning?

This past week gave us a pretty clear signal of where developer tools are heading. Google wrote about long-running agents that can pause, resume, and keep context. xAI pushed Grok Build into the terminal. Security vendors are now treating coding agents and AI workstations as their own attack surface. VentureBeat covered new tooling for debugging and evaluating agents locally.

The trend is not subtle anymore. The industry is moving from "AI helps me write a function" to "AI can run a chunk of the workflow while I do something else." That is a different category of tool.

The shift from suggestion to execution

Autocomplete was easy to understand. You typed, the model suggested, you accepted or ignored it. The developer stayed in the loop because the interaction happened one line at a time.

Agents change that rhythm. They read files, create branches, run tests, search docs, call APIs, and sometimes make decisions across several steps. A good one can take a vague instruction like "add export support" and come back with a working implementation. A bad one can make the same request look finished while quietly breaking edge cases nobody asked it to check.

That is why long-running context matters. If an agent loses the reason behind a task halfway through, it starts optimizing for the last instruction instead of the actual goal. Pause and resume sound like small features, but they point to a deeper need: agents need memory, state, and handoff discipline if we expect them to work on real projects.

Developers now need agent operations

We already learned this lesson with DevOps. The hard part was never just running code. It was logs, rollback, permissions, monitoring, repeatability, and knowing who touched what.

AI agents need the same kind of operational thinking. Maybe we call it agent ops, maybe that term gets replaced by something less awkward. Either way, teams need answers to basic questions:

  • What tools can the agent access?
  • Can it write to production systems?
  • Does it run in a sandbox or on a developer machine?
  • Are prompts and tool outputs stored anywhere?
  • Can another developer replay what happened?
  • Does the agent know when to stop?

These are not paranoid questions. They are normal engineering questions. The only reason they feel new is that agents blur the line between assistant, script, and contractor.

The security problem is not theoretical

A coding agent has a weird mix of power. It can read private code, follow instructions from files, install packages, call remote services, and generate commits that look like human work. That combination is useful. It is also a gift basket for prompt injection, supply chain attacks, and accidental data leaks.

Imagine an agent browsing a GitHub issue that contains malicious instructions hidden in a comment. Or reading a dependency README that tells it to export environment variables for "debugging." Or changing CI config because it misunderstood a failing test. None of that requires science fiction. It only requires a tool that is trusted too much and observed too little.

The answer is not to ban agents. That would be like banning shell scripts because someone once wrote a dangerous one. The answer is to constrain them.

Give agents scoped credentials. Run them in disposable environments. Make file changes reviewable. Keep command logs. Separate read access from write access. Treat browser and terminal actions as privileged operations, not casual conveniences.

Small teams may feel this first

Big companies will build policy around this. They will have committees, procurement checklists, red-team exercises, and a lot of expensive dashboards.

Small teams will feel the upside faster. A solo developer can use an agent to prototype a feature, write tests, refactor a messy module, or summarize an unfamiliar codebase. That is real leverage. But small teams also have fewer guardrails. The same agent that saves a weekend can also delete the wrong folder, leak a token, or push a confident but broken migration.

This is where discipline beats hype. If you use AI agents in your workflow, start with boring rules:

  • Use git branches for agent work.
  • Review diffs before running the app.
  • Keep secrets out of reachable files when possible.
  • Run tests yourself before merging.
  • Ask the agent to explain risks, not just summarize success.

That last one matters. Agents are good at sounding done. They are less good at volunteering uncertainty unless you force the habit.

The best developers will not be the most automated

I do not think the winning developer workflow is "let the agent do everything." That sounds impressive in a demo and terrifying in a real codebase.

The better workflow is more selective. Let the agent handle tedious exploration, scaffolding, first drafts, and repetitive edits. Keep humans close to architecture, product judgment, security boundaries, and final review. Use the agent to create momentum, not to remove responsibility.

There is a quiet temptation in all of this: if the agent can work while we sleep, maybe we can stop paying attention. That is exactly backwards. The more capable the agent becomes, the more important the operating model becomes.

AI coding agents are growing up. The question is whether our development habits will grow up with them.

Source signals

This article was based on recent public signals from Google Developer Blog coverage of long-running agents in ADK, reports on xAI Grok Build entering the terminal, Endor Labs writing about security for AI coding agents and workstations, and VentureBeat coverage of local agent debugging and evaluation tools.


If you enjoy this article and would like to show your support, you can easily do so by buying me a coffee. Your contribution is greatly appreciated!

Buy Me A Coffee