Frontier Operations

AI Can Do the Work Now. The Bottleneck Is Whether You Can Verify It.

Associates AI ·

OpenAI's new field report on coding agents in science quietly buried the most important finding of the year: agents produced fast, capable output — and couldn't tell whether any of it was correct. The constraint has moved from generation to verification. That shift changes how you should build every AI workflow in your business.

AI Can Do the Work Now. The Bottleneck Is Whether You Can Verify It.

The Sentence Everyone Skipped

On July 29, OpenAI published a field report documenting eight scientific computing projects where coding agents rewrote, ported, and optimized research software. The headline numbers are the kind that make people forward the link: a 60x runtime cut on one genomics tool, a 20,000-line RNA aligner rebuilt in weeks instead of months, a statistical library ported to Rust running up to 9.5x faster across eight threads.

Then, buried in the write-ups from the actual contributors, is the sentence that matters more than any of those figures.

"The technology is the easy part," said Phil Ewels, one of the contributors. "Stewardship is the open question."

Read the whole report and a single pattern emerges from every project, across genomics, immunology, and statistics. The agents handled the implementation. They could not tell whether their own output was correct. One contributor described agents "expressing confidence in work that contained clear errors." Another said a model could claim a plot looked fine, but checking over 900 of them by eye before release still fell to a person.

The constraint in AI work has moved. It is no longer whether the machine can produce the thing. It is whether you can verify the thing it produced. And almost nobody has built their business for that.

Generation Got Cheap. Judgment Didn't.

For three years the bottleneck in every AI conversation was capability. Can it write the code? Can it draft the email? Can it read the contract? The honest answer, for a long time, was "sort of, with heavy supervision."

That era is closing. The OpenAI report is one data point among many showing that agents now handle well-scoped implementation requests capably — a full language port, a build-system overhaul, a performance pass — with a human doing far less of the typing.

But capability arriving does not mean the work is done. It means the work moved. Here is how one contributor, Andrew Ho, described his own experience: he is "neither a genomics specialist nor a C programmer," and the agent's optimization pass felt "nothing short of magical." He had previously lost time to performance bugs he could recognize but not personally fix. The agent fixed them.

Notice what had to be true for that to be a win. Ho could recognize the bugs. He had a benchmark. He had a representative test set. The agent's output was checkable against a definition of correct that existed before the agent ran. The magic wasn't the generation. The magic was that generation landed inside a system built to verify it.

Strip that system away and the same agent output becomes a liability. A confident, fast, plausible answer that nobody can check is worse than no answer, because it looks finished. This is the trap most businesses are walking into right now: they bought the generation and never built the verification.

What good looks like

Every project in the report that succeeded had the same shape. The humans built acceptance tests first — exact output matching, parity checks against the existing tool, answers established beforehand using simulated data — and then let the agent produce drafts against that bar.

One statistical port, bayesm-rs, is the clearest example. Where the agent had "a direct reference to check against," it worked quickly and correctly. Where the task required statistical judgment the original code never pinned down, the output needed direct human validation. Same agent. Two completely different reliability profiles. The only variable was whether a verifiable definition of correct existed.

That is what good looks like: the definition of correct comes first, the agent's speed comes second, and the human's attention is spent on the small set of things a benchmark can't catch.

What bad looks like

Bad looks like a demo. The agent produces something, it looks right, everyone nods, and it ships. There was no acceptance test, no parity check, no pre-established answer — just a plausible artifact and the human instinct to trust confident output.

We watched a version of this play out across the whole market in the rollback wave of mid-2026, where 79% of businesses reported having to manually reverse something an AI agent did. Almost none of those reversals were caused by a model that couldn't do the task. They were caused by output that shipped without anyone able to catch that it was wrong until after it was live.

Bad isn't slow AI. Bad is fast AI with no verification layer underneath it.

Cheap Rebuilds Cut Both Ways

There is a second warning in the report that SMB owners should read twice, because it applies far beyond scientific software.

When generation gets cheap, people generate more. The report notes that lower engineering costs let a two-person team take on a rebuild that would once have required a grant-funded engineering effort. That is genuinely good. But Ewels flagged the downside in the same breath: cheap rebuilds "bring their own risk, because tools that diverge in behavior fragment the community and make results from different labs incomparable over time."

Translate that out of genomics and into your business. When it costs almost nothing to spin up another agent, another workflow, another automation, you get sprawl. Five slightly different versions of the same process, each producing slightly different output, none of them the authoritative one. Six months later nobody can tell you which agent generated which result, or whether two reports that disagree are both right, both wrong, or measuring different things.

The generation was free. The reconciliation is not. This is the same governance sprawl that 96% of enterprises now report — a proliferation of agents that outran anyone's ability to inventory, verify, or govern them.

Cheap output without a system of record is not an advantage. It is future cleanup with interest.

This Is Why We Talk About Seams, Not Autonomy

One useful way to describe every AI deployment: as a seam design problem. A seam is a transition — a point where work moves from one actor to another. Agent to agent. Agent to human. Human back to agent. The quality of an AI system is almost entirely determined by how clean, verifiable, and recoverable those transitions are.

The OpenAI report is a catalog of well-designed seams, whether the contributors called them that or not. The agent produces a draft. That draft hits a verification seam — a benchmark, a parity check, a human reviewing 900 plots. Only output that passes the seam moves forward. Output that fails goes back. The human's judgment is concentrated exactly at the transition where a machine's confidence can't be trusted.

Autonomy is the wrong thing to optimize for. A fully autonomous agent with no verification seam is a machine that does the wrong thing quickly and tells you it went great. What you actually want is a steerable agent: one that can run on its own where the output is checkable, and pause for human judgment precisely where it isn't.

The three questions a seam answers

Every verification seam in your business should answer three things before an agent's output is allowed to move downstream:

  • What is the definition of correct? Not "good," not "looks right" — a specific, checkable standard. A parity check against an existing process, a set of test cases with known answers, a numeric tolerance. If you can't state it, the agent can't be verified, and neither can a human doing the same job.
  • Who or what checks it, and how? Sometimes the checker is another test suite. Sometimes it's a second agent scoped only to review. Sometimes it's a person. The report is clear that for judgment-heavy work, the checker is still human — and that's a feature, not a failure.
  • What happens when it fails? A seam that can only pass is not a seam. It needs a defined path for rejected output: back to the agent with feedback, escalated to a human, or held. Reversibility is the whole point.

Answer those three at every transition and you have a system that gets faster as models improve without getting more dangerous. Skip them and you have a demo that works until the day it doesn't.

What To Actually Do This Quarter

You don't need a research lab to apply this. You need to stop treating "the AI can do it" as the finish line and start treating it as the halfway point. Here's the concrete sequence.

  1. List your current AI workflows and mark each one's verification layer. For every place an agent produces output, write down exactly how you know that output is correct. Many businesses discover, doing this, that the honest answer for most workflows is "we don't." That blank is your risk.

  2. Write the definition of correct before you deploy anything new. For the next agent workflow you stand up, specify the acceptance test first — the known-answer cases, the parity check against your existing process, the tolerance. If you can't define it, that's a signal the task needs a human in the loop, not more prompting.

  3. Put the human where judgment lives, not everywhere. The goal isn't to review everything. It's to review the specific transitions where output isn't mechanically checkable. Free the human from the checkable work so their attention lands on the parts that genuinely need it.

  4. Build a system of record before you scale up generation. Before you spin up your fifth agent doing variations of the same job, decide which one is authoritative and where its output lives. Cheap generation without a source of truth produces the fragmentation the report warns about.

  5. Make failure paths explicit. For each workflow, define what happens to output that fails verification. Where does it go? Who gets told? Can it be reversed? A workflow with no failure path is a workflow that ships its mistakes.

None of this slows you down in the way it sounds like it might. It's the opposite. The teams in the report that built verification first moved faster, because they could trust the agent to run without watching every keystroke. Verification isn't the tax on speed. It's what makes speed safe to use.

FAQ

Q: Isn't verification just going to disappear as models get better? A: No — and this is the most common misread. Better models generate better first drafts, which raises the value of verification, not lowers it. The OpenAI report used current-generation models and still found that agents "couldn't judge whether their own output was scientifically sound." A model confidently wrong is harder to catch than a model obviously struggling. As capability rises, the failures get subtler, and the verification layer matters more.

Q: My business isn't writing genomics software. Does this apply to me? A: The domain is incidental. The pattern is universal. Replace "scientific software" with your invoices, your customer emails, your compliance filings, your marketing copy. Any place an agent produces output that a person then trusts and acts on is a verification seam. The report just happens to document it in a field where correctness is unusually easy to measure — which makes the lesson clearer, not narrower.

Q: How is this different from "human-in-the-loop"? A: Human-in-the-loop is the answer; verification design is the question. Everyone agrees a human should be involved. The hard part is knowing where — which transitions actually need judgment and which are mechanically checkable. Bad human-in-the-loop reviews everything and burns out the human. Good human-in-the-loop concentrates human attention on the exact seams where a machine's confidence can't be trusted. We covered the case for human-in-the-loop agents in more depth, but the update is this: the loop has to be placed, not just present.

Q: We already have agents in production. How do I know if we have a verification gap? A: Ask one question about each workflow: if the agent produced a confident, plausible, wrong answer tomorrow, how would we find out — and how long would it take? If the answer is "a customer would tell us" or "eventually, in the numbers," you have a gap. Verification you only discover after the damage is not verification.

Q: Doesn't building all this verification cancel out the time the AI saves? A: It would, if you verified everything by hand. The point is to build the check once so it runs automatically, and reserve human time for the small set of things that can't be automated. The projects in the report that succeeded spent their human hours on edge cases and numerical discrepancies a benchmark couldn't catch — not on re-doing the agent's work. Done right, verification is what lets you trust the speed instead of babysitting it.

Build the System, Not Just the Agent

The lesson of 2026 keeps arriving in different costumes. Half of businesses can't scale past one agent. A fifth of production agents lose money. Most rollbacks trace to output nobody could verify in time. Now a report full of impressive AI wins tells you, in the contributors' own words, that the technology was the easy part and stewardship is the open question. The through-line is the same every time: the model was never the bottleneck, and buying more model won't fix a system that has no verification in it. If you're ready to stop deploying AI tools and start running AI coworkers inside a system built to verify, steward, and stay in control as the models change underneath you, Associates AI Teammates gives you a 14-day free trial with no credit card required. Start your free trial at associatesai.team.

MH

Written by

Mike Harrison

Founder, Associates AI

Mike is a self-taught technologist who has spent his career proving that unconventional thinking produces the most powerful solutions. He built Associates AI on the belief that every business — regardless of size — deserves AI that actually works for them: custom-built, fully managed, and getting smarter over time. When he's not building agent systems, he's finding the outside-of-the-box answer to problems that have existed for generations.

More from the blog

Ready to put AI to work for your business?

Get started today. Hire your first Teammate in minutes and put it to work on what you're reading about.

Get Started