---
type: "post"
stable_id: "post:async-agent-supervision-conductor-chatgpt-activity"
slug: "async-agent-supervision-conductor-chatgpt-activity"
title: "Async Agents Need Both Workspaces And An Attention Queue"
description: "Conductor isolates concurrent agent work while ChatGPT Activity aggregates the state transitions that require human attention."
retrieval_nugget: "Execution isolation and attention routing are separate control planes. Conductor provides task workspaces and review paths; ChatGPT Activity collects running, ready, blocked, and needs-input states for the operator."
published_at: "2026-08-05"
updated_at: "2026-08-05"
record_date: "2026-08-05"
date_kind: "discovered_at"
topics: ["coding-agents","async-work","human-in-the-loop","agent-ux"]
entities: ["Conductor","OpenAI","ChatGPT Activity"]
source_format: "documentation"
editorial_timing: {"lane":"regular_hourly_analysis","scheduled_at":"2026-08-07T17:00:00+03:00","real_news_delta":"paired execution and attention-control pattern"}
visual_decision: {"status":"not_applicable","reason":"the first generated concept failed the fail-closed style review with paragraph-like bitmap text; the guarded first-pass rule keeps this release text-only","reviewed_by":"codex"}
schema_version: "newruntime-agent-readable-v0.2"
status: "published"
source_urls: ["https://www.conductor.build/docs","https://learn.chatgpt.com/docs/notifications"]
visuals: []
routes: {"html":"https://newruntime.com/posts/async-agent-supervision-conductor-chatgpt-activity/","markdown":"https://newruntime.com/posts/async-agent-supervision-conductor-chatgpt-activity.md","json":"https://newruntime.com/posts/async-agent-supervision-conductor-chatgpt-activity.json"}
---

# Async Agents Need Both Workspaces And An Attention Queue

## Retrieval answer

Execution isolation and attention routing are separate control planes. Conductor provides task workspaces and review paths; ChatGPT Activity collects running, ready, blocked, and needs-input states for the operator.

Asynchronous agent work needs two different systems. Conductor owns the execution substrate: Claude Code, Codex, Cursor, and OpenCode can run in parallel while each task receives its own workspace, branch, files, terminal, diff, and review path. A task can mutate code and run processes without colliding with the main checkout or a neighboring job.

ChatGPT Activity addresses the other half: routing human attention. One view collects work that is running, unread, blocked, ready, or waiting for input. The operator does not keep ten tabs open just to discover that one agent needs a decision.

These layers should remain separate. A common chat surface does not provide isolation, and isolated workspaces without an attention surface create a silent backlog. A useful supervisor therefore tracks task_id, workspace_id, state, needs_human, last_transition_at, next_check_at, artifact links, and an idempotent response channel.

Conductor's current public documentation supports isolated local and cloud workspaces plus API supervision; it does not establish a microVM substrate. The durable architectural claim is the workspace contract, not an inference about the virtualization layer.
