Categories:
Strategy
ai-agents coding-agents scientific-computing workflow verification

When the AI Writes the Code, Your Real Job Begins

Feature image for When the AI Writes the Code, Your Real Job Begins

When the AI Writes the Code, Your Real Job Begins

OpenAI just published something that should reframe how you think about AI agents — and it has nothing to do with chatbots writing marketing copy.

Eight scientific computing projects. Real ones, running underneath genomics and bioinformatics research. Small academic tools built years ago that nobody had the time or funding to maintain. The kind of code that thousands of scientists quietly depend on, but which sits rotting in a repository because the grad student who wrote it graduated in 2017.

GPT-5.5 and Claude Code were handed these projects. They rewrote build systems, migrated languages, redesigned architectures. And they were good at it. Not perfect. But genuinely useful at the kind of grunt work that scientific software desperately needs and nobody volunteers for.

Here’s the part that matters for anyone who works with AI tools.

The role shift nobody talks about

Across all eight projects, the same pattern emerged. The researchers stopped writing code. They started reviewing it.

This wasn’t a failure or a concession. It was the natural state of things once the agent could produce a working first draft in minutes instead of the researcher spending two weeks on it. The human’s job shifted to something arguably harder and definitely more valuable: specifying what to build, defining what “correct” means, and deciding when something is ready to ship.

Think about that. The researcher didn’t become obsolete. They became an editor, an architect, a quality gate. The agent handled the typing. The human handled the judgment.

If you’ve ever managed a junior developer, this feels familiar. You give them the task, they produce something, and your job is to review, correct, and guide. Except the junior developer is now available around the clock, never gets tired, and costs fractions of a cent per interaction.

The verification bottleneck

Here’s where it gets uncomfortable. The report is remarkably honest about a problem that should give anyone pause.

Agents are bad at knowing when they’re wrong.

Not occasionally. Frequently. The report notes that agents would express high confidence in work that contained clear errors. Not subtle edge cases — clear mistakes. This means the bottleneck didn’t disappear. It moved.

Before: Can we build this? After: Can we trust what the agent built?

That’s a fundamentally different problem. Building was a time problem. Verification is a trust and expertise problem. And it’s harder.

The strongest validation approaches the researchers found weren’t about prompting better or asking the agent to double-check its work. They were external. Running the agent’s output against known-correct results. Comparing against existing tools. Testing against pre-established simulated data.

The most reliable check on AI output was something the AI couldn’t influence.

What this means for your work

The pattern from these science labs maps directly onto almost any knowledge work. Here’s the practical takeaway.

Stop thinking about AI as a tool you use. Start thinking about it as a junior colleague you manage.

That means three things:

  1. Write better specs. The researchers who got the best results didn’t just say “fix this.” They defined what correct looked like before the agent started. What are the acceptance criteria? What constitutes done? If you can’t answer those questions, the agent can’t either.

  2. Build external checks. Don’t rely on the agent to tell you if it’s right. Have a separate way to verify — a test suite, a reference output, a human reviewer who didn’t write the prompt. The agent’s confidence is not evidence.

  3. Own the last mile. Every project in the report hit the same wall: the first 80% was fast, the last 20% (edge cases, numerical precision, subtle integration issues) took the most human effort. Budget for that. The agent gets you to draft quality quickly. The draft is not the deliverable.

The fragmentation problem

There’s a longer-term risk buried in this report that deserves more attention.

When implementation becomes cheap, you get many competing rewrites of the same tool. Each one slightly different. Each one with its own small user base. The community fragments, and the expert attention needed to maintain any single version gets diluted across five forks instead of concentrated on one solid project.

This is already happening in open source. Search for any popular library and count the forks. Now multiply that by the speed and volume AI agents enable.

The researchers flagged this as a structural worry for scientific software stewardship. But it applies everywhere. Cheap creation doesn’t just lower the barrier to good work. It lowers the barrier to mediocrity, fragmentation, and noise.

What to do now

If you’re working with AI agents — whether for code, content, analysis, or anything else — the lesson from these eight projects is clear.

Your competitive advantage isn’t producing the first draft. It’s knowing what good looks like, catching what the agent misses, and stewarding the result toward something people can actually rely on.

The code is no longer the hard part. The judgment is.


Based on OpenAI’s field report on scientific computing in the age of agentic AI, published July 2026.

Related Articles