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

推荐订阅源

WordPress大学
WordPress大学
H
Help Net Security
Jina AI
Jina AI
V
V2EX
G
Google Developers Blog
B
Blog
GbyAI
GbyAI
U
Unit 42
爱范儿
爱范儿
腾讯CDC
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
小众软件
小众软件
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园 - 聂微东
The Cloudflare Blog
I
InfoQ
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏

The New Stack | DevOps, Open Source, and Cloud Native News

Agentic development hinges on verification. For cloud-native software, that is a runtime problem. AI agents need infrastructure: Why Europe’s regional cloud strategy matters Transform your AI coding agent into a deterministic Java Spring expert WeAreDevelopers is coming to the US to give unsung developers a bigger voice Cleaner AI training data, fewer bugs: Sonar’s SonarSweep explained Observability overload is drowning engineers Google’s DiffusionGemma is 4x faster than its other Gemma models Fable 5: Guardrails and burn rate are annoying users, who say it’s still better than Opus 4.8 The Anthropic leader who built Claude Code says he ditched prompting — now he just writes loops. AWS can now mathematically prove your VMs are isolated Microsoft pulled 73 GitHub repos after malware attack — but still won’t say who’s compromised Databricks wants to kill the “email me a file” problem for AI agent skills Ramp bets forward deployed engineers can do what off-the-shelf finance AI can’t Git real: AI agents aren’t just for solo developers anymore Anthropic launches Claude Mythos/Fable 5, but you better try it soon This AI agent startup ditched Anthropic for DeepSeek — and says it’s saving millions When your data model is the bottleneck: lessons from Medium’s feature store How long before we stop reading the code? The tokenmaxxing party is over, and Revenium is mopping up How AI is solving the memory crunch it created Microsoft’s pitch to enterprises: Ditch Azure Repos for GitHub, despite its rocky reliability record Claude Code’s biggest upgrade yet ran 5 agents at once — here’s what happened Why Anthropic just doubled Claude Cowork limits at no charge For years, Apache Cassandra handed this work to your team — 6.0 takes it back “A dangerous combination”: The 2 factors that can “corrupt” AI agent workflows With Foundry, Microsoft bets the enterprise AI battle is about reliability, not capability Microsoft unlocks Visual Studio for developers left behind by its own AI AI teams now deploy 1,000 times a month. Your pipeline wasn’t built for that. Microsoft just made the agent runtime free — and kept everything around it “Whoever builds the most joyous product wins”: The agent war begins
Greptile, Cursor, and Devin agree that agents should run ...
Arjun Iyer · 2026-06-27 · via The New Stack | DevOps, Open Source, and Cloud Native News

The industry has recognized that shipping agent code at scale requires runtime verification, and it is moving that way fast. However, the scope of that verification remains limited for most teams.

A consensus is forming in agentic development: To ship code from agents at scale, you have to enable them to verify their code at runtime. Static verification, reading the diff and running unit tests against mocks, is not enough. 

The constraint is knowing whether what an agent produced actually works, and that answer only exists once the code runs. So the industry is moving verification out of the human review queue and into the agent’s own loop, giving agents a place to run their work and check it before a person ever sees the change. 

“The industry has recognized that shipping agent code at scale requires runtime verification, and it is moving that way fast. However, the scope of that verification remains limited for most teams.”

Greptile, Cursor, Codex, and Devin all now run the code an agent writes rather than only reading it.

That is the right direction. Once agents open pull requests faster than people can review them, review becomes the bottleneck. Stripe’s internal agents ship more than 1,000 reviewed PRs per week. An agent that can run its own code, read the failures, and fix them before handoff is what keeps that bottleneck from landing entirely on your senior engineers.

For cloud-native teams, this is not a nice-to-have. And it is where the approach most companies are adopting hits a ceiling. The common pattern gives each agent its own sandboxed environment, a snapshot that reproduces what a developer can run locally. For a self-contained application, that is enough. 

For an agent working in a distributed system, it verifies one service against mocks and misses behavior that only appears when the change interacts with the rest of the system.

That behavior, integration, and the other system-level tests are where the expensive bugs live. The trend is right. The question is whether the runtime your agents verify against is the real system or a stand-in for it.

The industry is converging on runtime

The clearest signal is that agent tools have stopped just reading the diff and started running it. Static analysis has a ceiling: It can reason about what code says, not what it does. A race condition that needs a real request, a regression that only appears after a page renders — none of it shows up in the text.

The trend is visible everywhere. Greptile recently announced TREX, a new feature that executes each change in a disposable sandboxed environment and returns logs, traces, and screenshots of what happened. Cursor’s cloud agents clone the repo into their own VM to build and test. OpenAI’s Codex Cloud does the same. Devin runs in a full environment with its own shell and test runner. Different products, one move: Give the agent a place to run its work and prove it before handoff.

Runtime verification is exactly the layer most agentic stacks are missing, and pushing it into the agent’s own loop is how review stays fast as volume climbs. The open question is the level of runtime fidelity it takes to actually call a change verified.

Where it has to go further for cloud-native teams

The approach all these tools have taken is to give an agent roughly what a developer has at their desk: its own service, the dependencies it can start locally, and mocks standing in for everything else. That is a real and useful capability, and it is the correct direction.

For a cloud-native application built from many services, it covers less than half of it. The rest of the surface it misses is the part that matters most: How the change behaves relative to the rest of the system. A mock only returns the answer someone expected in advance. It can confirm an assumption but never catch a wrong one. And the expensive bugs in these systems are exactly the ones that break an assumption where two services meet:

  • Contract drift between services
  • A serialization mismatch at a boundary
  • A retry or timeout policy that misbehaves two hops away

None of that shows up in a unit test or against a mock. It surfaces in integration tests, end-to-end tests, and the other system-level checks that only mean something when the change runs against the real services, real data, and real traffic around it. 

The same goes for the non-functional behavior teams care about most: Performance and load regressions, resource contention, and runtime security issues surface only when the change runs inside a realistic system. That is the layer a sandboxed environment cannot reach.

The intuitive fix, cloning the whole system into every agent’s environment, does not hold up. Standing up dozens of stateful services with their data and config, fresh for each agent on every iteration, is impractical at the volume and speed with which agents generate code. And a copy is still a snapshot, not the live system.

Diagram showing the extent of stand-ins for real dependencies in a sandbox model.

An architecture that reaches the whole system

The way through is to stop giving each agent its own copy of the system and instead let every agent run verification against one shared, production-like system with isolation.

The pattern is straightforward. A shared cluster runs all the real dependencies, the full set of services as they behave in production. To verify a change, you deploy only the modified service into that baseline and use request-level isolation to keep each agent’s traffic on its own path. The agent’s requests hit its version of the service and then flow through the underlying real services. Everyone else’s traffic stays on the baseline, untouched.

This gives the agent a realistic runtime in which its change runs alongside the live services, data, and policies it has to work with. Integration and system behavior become observable because the interactions are real rather than mocked.

It also scales to the way agents work. Because each change is just one service layered onto the running system rather than a private copy of everything, many agents can verify at once, cheaply, without colliding. The environment is lightweight and short-lived, and it runs on infrastructure the team already operates. This is the model we build at Signadot. Today, that means Kubernetes, though the same idea will carry over as the tooling matures.

Diagrammatic representation of an architecture that reaches the whole system.

It fits the loop the agent tools already use. The agent writes, runs, reads the failure, and tries again, all before the pull request. What changes is the bar for a passing run. Not green against mocks the agent wrote to match its own assumptions, but correct against the real system those assumptions describe.

The trend is right. The reach is the question.

Runtime verification is becoming a first-class part of how software ships, and that is the correct evolution. The teams furthest ahead already treat the agent’s job as write, prove, debug, repeat, not just write.

“Not green against mocks the agent wrote to match its own assumptions, but correct against the real system those assumptions describe.”

The question for anyone running a cloud-native system is how far that proof reaches. An isolated per-agent environment verifies a change on its own, and for many changes, that is enough.

Proving a change is right when it has to work alongside everything around it is a different problem. It takes integration and system-level verification against a runtime that holds the rest of the system, not a stand-in for it. 

The teams that get the most out of background agents will be the ones whose verification loop reaches the whole system, not just the service in front of them.

YOUTUBE.COM/THENEWSTACK

Tech moves fast, don't miss an episode. Subscribe to our YouTube channel to stream all our podcasts, interviews, demos, and more.

Created with Sketch.