OpenAI Training · AI Newsletter
ChatGPT as an Agent Manager — Request for Experimental Access
The Hook
Today, one story landed with unusual weight: OpenAI posted an experimental access request for a feature called ChatGPT as an Agent Manager, and it reframes what ChatGPT fundamentally is.
Until now, ChatGPT was a conversational tool: you type a goal, it returns an answer. The Agent Manager model changes that entirely. ChatGPT becomes a coordinator — it receives a high-level objective, breaks it into sub-tasks, and dispatches each one to a specialized agent built to do exactly one job. Think of it as the difference between a solo generalist and a manager running a small team. The generalist handles everything sequentially. The manager decides who handles what — and verifies their output.
A second story from today makes this concrete in a different way: AI booking agents are already being deployed at restaurants, reserving tables on behalf of diners — and in some cases, triggering automated systems that get those diners permanently banned. The agents acted autonomously, without the constraints that prevent runaway behavior. That failure mode is not a restaurant problem. It is an agent design problem, and the principles that prevent it are exactly what today's issue covers.
One concept explained plainly. One 15-minute exercise you can run right now. One prompt to paste immediately. By the end of this issue you will have a transferable skill — one that works across the ChatGPT experimental interface, the Responses API, and any multi-step pipeline you build from here. The window before a feature is everywhere is the best time to build the underlying skill.
One Tip
Today's skill: task decomposition for agent handoffs.
The most common mistake people make when first working with agents is writing prompts the same way they write a regular ChatGPT message — one long block describing the entire goal. That approach works when one model handles everything. It breaks the moment you add a second agent, a third, or a manager deciding who does what.
Agent systems run on clean handoffs. Each agent receives a specific input, does one thing with it, and returns a specific output. The manager — soon, ChatGPT in its new literal role — needs to know exactly what each agent produces and what the next one expects. If you cannot describe what one agent returns without explaining what the next one does with it, the handoff is not clean yet.
Three rules that fix most decompositions:
- Name the role, not the task. Instead of 'agent that researches competitors and summarizes findings,' write: 'Research Agent — receives a company name, returns five structured facts, nothing else.' The output contract matters more than the task description.
- Separate gathering from reasoning. Agents that fetch or retrieve information should not also interpret or evaluate it. Give interpretation to a dedicated separate agent. This separation keeps each one independently testable — you can swap out the Research Agent without touching the Writing Agent, and vice versa.
- Define the failure case before you build. What does this agent return when it finds nothing? When the source is down? When the result is ambiguous? The manager needs a defined fallback — otherwise the pipeline stalls indefinitely.
Before and after — one real example:
Before (one agent, over-scoped): 'Research this startup and write a cold email.'
After (two agents, clean handoffs):
- Research Agent — Input: startup name and website URL. Output: five bullet facts — founding year, core product, latest funding round, one piece of recent news, name of key decision-maker. Constraint: facts only, no prose, no opinions.
- Writing Agent — Input: those five bullet facts. Output: one 150-word cold email ending with a specific ask. Constraint: every claim in the email must trace back to an input fact.
Your 15-minute exercise: Take any task you would normally paste as one big message and rewrite it as a two-agent handoff. Write one sentence per agent covering role, input, and output. You will know it worked when a colleague can read those two sentences — without ever seeing your original task — and fully understand what each agent does.
One Prompt
Paste this directly into ChatGPT — or your API playground — to practice decomposing any task into agent-ready steps:
You are an agent orchestrator. I will give you a task.
Do NOT attempt to complete the task yourself.
Your job: break this task into 2-3 sub-tasks, each small
enough to be handled by one specialized agent.
For each sub-task, define:
Agent name: one word describing its function
Input: what this agent receives (be specific)
Output: what this agent must return (be specific)
Constraint: one rule this agent must always follow
Format as a numbered list:
1. Agent name: [name]
Input: [description]
Output: [description]
Constraint: [rule]
My task: [PASTE YOUR TASK HERE]How to use it: Replace the last line with any real task from your current week. Strong starting points: 'Summarize this 40-page report and flag the five most urgent action items,' 'Research three software vendors and rank them by implementation time and support quality,' or 'Turn this 45-minute call transcript into five LinkedIn posts each under 200 words.' Run it in ChatGPT, then read the decomposition you receive.
You will know it worked when: each agent definition is specific enough to hand to a different tool, a different model, or a different team member — without rewriting anything. If two agents' outputs overlap, or one agent sounds like it handles 'everything,' keep breaking it down.
Bonus step: Once you have the agent list, paste it back into a new message and ask: 'Now write a one-paragraph system prompt for each of these agents, including the constraint each must respect.' You have just scaffolded a real multi-agent pipeline — and built the exact skill that ChatGPT's Agent Manager feature rewards the moment it ships widely. You will be ahead of everyone who waited.
Sources
- ChatGPT as an Agent Manager — Request for Experimental Access — community.openai.com
- AI agents can help diners book a table. It can also get them banned — Restaurant Business
- Versuchter KI-Missbrauch: Anthropic registriert Aktivitäten rund um mögliche Biowaffen-Forschung — n-tv.de
- ‘Not Tens Of Billions, But Tens Of Trillions’: Nvidia CEO Jensen Huang Says AI Is Like the New Electricity and the Scale Is Unlike Any Tech in History — Barchart
- Hackers Can Turn AI Workflows Into Privileged Data-Stealing Proxies Without Jailbreaking Models — CyberSecurityNews
- UK economy defies forecasts with surprise 0.4% growth in July — theguardian.com
- Google Research Releases ToolGrad: Answer-First Framework Hits 99.8% Pass Rate for Tool-Use Data Generation — marktechpost.com
- Global Industry Morning Brief: DeepSeek officially releases V4.1 Flash model_Industry and Economy — 前瞻网