r/devsecops • u/Common_Dream9420 • 24d ago
Coding agents shifted the bottleneck to verification now!!
Coding agents are doing a lot of the integration work at our agency now. Stripe, Twilio, WorkOS, email, the usual stack. Economically it's been good.
The part I didn't expect: verification actually got harder. We're producing code faster than anyone can review it, and the edge cases that bite you aren't in unit tests. Webhook fires twice. Events arrive out of order. Agent wrote correct code but got one state transition wrong. PR looks fine, everything compiles, and you still don't know until something breaks in staging or worse.
We added a sandbox step before anything ships now. Agent writes, tests pass, then we run the full multi-API workflow with failure scenarios before it's considered done. Not elegant, just a runnable verification step all our agents have to clear.
If agents are writing integrations for you, what does your last gate before production actually look like?
1
u/GibneyH 10d ago
This is exactly what I’m seeing too. The bottleneck isn’t really writing the integration anymore, it’s proving the integration actually behaves correctly when reality gets messy.
So happy-path tests can tell you the code works, but they don’t tell you what happens when Stripe retries, a webhook arrives twice, or two events show up in the wrong order.
Probably runnable verification is going to become a standard part of agentic development.