Jonathan Haaswritingthemesnowusesabout
emailgithubx
Jonathan Haaswritingthemesnowusesabout
July 8, 2025·3 min read

Async Code Gen Turns Engineers Into Operators

Async code generation is delegated execution. The new work is task design, review, evidence, and deciding what the system is allowed to ship.

#ai#software-development#automation#future-of-work#developer-experience

Filed under Agents and evals, Security and systems. The AI work I keep returning to: orchestration, feedback loops, measurable behavior, and where autonomy earns or loses permission.

The current AI coding model is synchronous. You sit with an assistant, go back and forth, write code together in real time. A new pattern is replacing it: you queue tasks, define specifications, and come back to completed pull requests with tests and documentation.

This is async code generation. It changes the developer's job from writing code to specifying intent and reviewing output.

More precisely: it turns software development into delegated execution. The hard part moves from producing code to designing work the system can safely complete without you watching every keystroke.

I wrote the field report version of this in orchestrating AI coding agents, after running multiple sessions against real repos and review loops.

Why Async Is Different

The obvious advantage is parallelism. Queue a dozen tasks, walk away, come back to a dozen PRs. A single developer orchestrates work that previously required a team.

The deeper advantage is that async forces precision. In synchronous pairing, you clarify fuzzy requirements through conversation. In async, the specification is all the model has. You either define success criteria upfront or you get garbage back.

That constraint is a feature. Precise specifications produce more consistent code, catch requirement gaps earlier, and create an auditable record of intent. The pipeline runs linting, tests, and security scans automatically. Instead of babysitting a model, you design the system it operates within.

The New Senior Engineer

Async code generation splits development into two tracks: specification and review. Your day alternates between defining tasks and evaluating results.

The ability to decompose a feature into small, independently verifiable units becomes the core senior engineering skill. "How do I implement this?" is no longer the hard question. "Did the model understand my intent?" is.

This reshapes roles at every level. Entry-level work shifts from writing boilerplate to testing, monitoring, and refining prompts. Mid-level engineers design automation pipelines and curate prompt libraries. Senior engineers focus on system design and cross-team coordination.

The best engineers become operators. They know what to delegate, what to keep close, where evidence is required, and when to interrupt a run before it turns plausible work into bad work.

The Infrastructure Requirement

Async generation only works with robust CI/CD. You need reliable tests, well-defined interfaces, and automated review gates. Without them, you're generating code nobody can trust.

Companies that build this infrastructure gain a compounding advantage. Every improvement to the pipeline -- better tests, tighter linting, smarter review bots -- multiplies the output of every developer using it.

Companies that don't build it will watch competitors ship at multiples of their velocity.

The missing layer is permission. What can the agent change alone? What requires review? What requires a human to merge? What evidence must travel with the work? Async code gen becomes dangerous when those questions are answered informally.

What to Do Now

Start small. Build an agent that generates boilerplate or test files for a side project. Observe how your work changes when the coding happens in the background.

Three things matter most:

  1. Specification quality. Better instructions mean less rework. Treat prompt-writing like writing a design doc, not a chat message.
  2. Review skill. AI-generated code looks plausible. Learning to spot subtle logic errors, missing edge cases, and incorrect assumptions is the new critical skill.
  3. Pipeline automation. Linting, testing, and security scanning must run without human intervention. The whole point of async is that you're not watching.

Async code generation is moving from experiment to standard practice. The developers who adapt will manage an order of magnitude more output. The ones who don't will be competing for a shrinking share of synchronous work.

The force multiplier is real, but it is not magic. It belongs to teams that treat agents as workers inside a system: assigned, observed, corrected, and measured.

Share:
//

More in Agents and evals

Previous on this shelf: Useful AI Code Review Needs Product Context

Next on this shelf: Agent Infrastructure Starts With Identity, Policy, and Audit

Open the full shelf

emailgithubx