Writing
The Unit of AI Work Is Becoming the Task, Not the Turn
Chat taught us to think one turn at a time. Long-running agents make the task the thing that is scheduled, resumed and reviewed.
Writing
Chat taught us to think one turn at a time. Long-running agents make the task the thing that is scheduled, resumed and reviewed.
Notes
Chat interfaces trained us to think about AI work one turn at a time. Ask a question, receive an answer, continue the conversation.
Agents are starting to break that model.
OpenAI's June 25 research on Codex usage describes a shift toward delegated work that can run for minutes or hours. By May 2026, 70.2% of sampled individual users had made at least one Codex request estimated to represent more than an hour of human work. A quarter had made at least one request estimated above eight hours. By June, users at the 99th percentile of daily active OpenAI users were regularly generating more than 60 hours of Codex agent runtime in a day, spread across several agents running in parallel.
No person has 60 hours in a day. That number only makes sense if the unit of interaction is no longer a conversation turn.
It is a task that can be delegated, executed and reviewed independently.
A chatbot interaction has a simple lifecycle. The user sends a message, the model produces a response, and the user decides what to do next.
That works well when the output is information. Agentic work changes that relationship.
A task such as "investigate these build failures and prepare a patch" may involve reading files, running commands, changing code, testing hypotheses and producing a diff. A research task may search sources, collect data and leave behind a spreadsheet or report. The useful output is not one message. It is the resulting artifact and the state change that produced it.
OpenAI's February Codex app already reflected this with multiple agent threads, worktrees and long-running jobs in one interface. The June data suggests people are increasingly delegating work in parallel rather than waiting turn by turn.
The interaction starts to look less like messaging and more like a work queue.
Longer tasks are not just longer prompts.
Once a job can outlive one context window or one period of human attention, it needs state outside the conversation. Files must survive. Progress has to be recorded. Intermediate artifacts need somewhere to live. Failed steps need to be retried without restarting everything.
This is why agent stacks have been accumulating environments, memory, context compaction, sandboxes and task state.
OpenAI's March Responses API architecture added hosted computer environments with filesystems, shell execution and persistent working state. Anthropic's Managed Agents architecture separates a durable session log, the agent harness and the sandbox so long-running work can survive failures and context changes.
A delegated task needs continuity even when individual model calls come and go.
A task is becoming a durable software object. It has an initial request, an execution environment, intermediate state, outputs and a completion condition. It may be paused, resumed, retried, reviewed or handed elsewhere.
A chat turn has almost none of those properties.
Parallel agents make the distinction clearer.
One person cannot meaningfully participate in several synchronous conversations at once. Agents do not have that constraint. Several tasks can run concurrently because each has its own context and environment.
OpenAI says its heaviest internal users were already distributing more than 60 hours of Codex runtime across multiple agents in a single day by June 2026. The Codex desktop app was designed around the same behaviour: several agents working in separate threads and worktrees while the developer supervises results.
Once parallelism becomes normal, response latency stops being the only useful productivity metric.
If one task takes 35 minutes but I can run six independent tasks at once, waiting 35 minutes may be acceptable. What matters is throughput, task success and review cost.
That is different from chat, where a ten-second delay can feel slow because the user is waiting for the next turn.
Sometimes I want an immediate answer. Sometimes I want the system to return when the work is finished.
Those are different modes of computing.
Task-based work changes the definition of output.
If I delegate spreadsheet analysis, I want the spreadsheet. If I delegate a code change, I want the diff and passing tests. If I delegate a production review, I want the report, source data and follow-up items created in the right systems.
The final natural-language response becomes a summary of the work, not the work itself.
OpenAI's June 2 report on knowledge-work usage describes Codex users creating reports, spreadsheets, presentations, contracts and other work products while using the agent for research, analysis and workflow automation. It reports that knowledge workers had grown to roughly 20% of Codex users and were increasingly running tasks in parallel.
For me, this is one of the clearest differences between assistants and agents.
An assistant helps me decide what to do.
An agent increasingly leaves something behind that can be reviewed, used or shipped.
The shift maps naturally to Blender, rendering and game-development workflows.
I would not want to operate a production agent through hundreds of conversational turns.
If I need 80 product scenes checked before delivery, the natural object is a task: validate these files against this project profile, fix only the safe issues, render previews for the rest and produce a report of anything requiring manual review.
That job may take an hour. It may use Blender Python, filesystem tools and a render worker. It may generate logs and preview images. None of those intermediate operations need to become a conversation unless something requires a decision from me.
A game-development build investigation can work the same way: one agent handles crash logs and tests while others check localisation or prepare release notes.
The human interface then becomes supervision rather than turn-taking.
I want to know which tasks are running, what state they are in, what they changed, which ones are blocked and which outputs need review.
That interface looks more like production management software than a chatbot.
There is one problem with moving from turns to tasks: a task needs a real definition of done.
A chat response ends when the model stops generating tokens. That does not work for delegated execution.
If an agent is asked to process 80 scenes, completion can be measured against 80 expected results. If it edits a repository, tests can verify the state. If it produces a report, the system can check that the required artifacts exist.
Without those checks, long-running execution only gives the model more time to produce an incomplete result.
This connects back to the evaluation problem I wrote about in 2024. Agent reliability is easier to engineer when the environment can determine whether the task succeeded instead of asking the model to judge its own work.
As the task horizon grows, completion criteria become more valuable, not less.
I think the dominant AI interface for serious work will move gradually from conversation history toward task management.
Chat will remain useful for exploration, clarification and short feedback loops. Longer work needs different primitives: task queues, artifacts, checkpoints, permissions, execution history, completion criteria and parallel agents.
The model may still communicate through natural language, but the product around it will behave less like messaging software.
I expect this to change how we measure AI productivity too. Tokens per conversation and response latency tell us little about a system running several hours of delegated work in parallel. More useful measures will be completed tasks, human review time, failure rate, cost per successful outcome and how much work can safely run without intervention.
OpenAI's current data should be read carefully. The task-duration estimates are model-generated rather than direct measurements of human labour, and heavy OpenAI usage is not representative of every workplace.
The exact percentages matter less than the pattern: people are delegating work that outlives a conversational interaction and running several jobs at once.
That changes the basic abstraction.
The first AI products were organised around the message.
Agent systems are increasingly organised around the task.
More