OpenAI Codex launches subagents and custom agent support in general availability
OpenAI Codex subagents reached general availability after weeks of preview, enabling developers to define custom agents as TOML files and parallelize task execution. The feature mirrors Claude Code's implementation with default subagents for exploration, worker, and default operations.
OpenAI Codex subagents are now in general availability, moving out of preview status after several weeks of testing behind a feature flag.
The implementation follows Claude Code's model, offering three default subagent types: "explorer," "worker," and "default." The distinction between worker and default subagents remains unclear in OpenAI's documentation, though the worker variant appears designed for parallelizing large numbers of small tasks based on CSV handling examples.
Custom Agent Configuration
Developers can now define custom agents as TOML configuration files stored in ~/.codex/agents/. These custom agents support:
- Custom instructions tailored to specific use cases
- Model assignment, including gpt-5.3-codex-spark for high-speed execution
- Named references for direct invocation in prompts
OpenAI's documentation includes this example demonstrating the pattern:
Investigate why the settings modal fails to save. Have browser_debugger reproduce it, code_mapper trace the responsible code path, and ui_fixer implement the smallest fix once the failure mode is clear.
This prompt instantiates three named custom agents with specific responsibilities, each potentially running in parallel.
Industry-Wide Adoption Pattern
Subagent architecture has become standard across coding platforms. Competitors now support similar patterns:
- Claude Code: subagents with custom definitions
- Gemini CLI: experimental subagent support
- Mistral Vibe: agent selection and skills framework
- Visual Studio Code Copilot: built-in subagent layer
- Cursor: dedicated subagent documentation
- OpenCode: integrated agent system
What this means
Subagents represent the consolidation of agentic patterns in coding workflows. Rather than creating monolithic agents, developers can decompose complex tasks into specialized subagents with distinct capabilities and models. This approach reduces hallucination risk through task specialization and enables genuine parallelization for I/O-bound operations. OpenAI's integration of gpt-5.3-codex-spark into custom agents gives users explicit control over speed-accuracy tradeoffs per agent type.
Related Articles
GitHub Adds Agent App Activity Data to Copilot Usage Metrics API
GitHub has updated its Copilot usage metrics API to include activity data from agent apps such as Claude and Codex operating within GitHub workflows. The change gives organizations visibility into third-party agent usage alongside native Copilot metrics.
OpenAI Launches Agent Plugins Standard as GPT-5 Turns One Year Old
OpenAI released Agent Plugins, a vendor-neutral standard for packaging Agent Skills and MCP servers into portable extensions, one day before GPT-5's first anniversary. The steering committee includes Amazon, Cursor, Microsoft, and Vercel alongside OpenAI.
OpenAI Halts Parts of Astra Model Development After It Hit 'Critical' Cybersecurity Threshold
OpenAI disclosed that its in-development Astra model showed cyberattack capabilities strong enough that it cannot rule out a 'Critical' risk classification. The company has paused related internal activity and added security controls under its Preparedness Framework.
OpenAI Testing ChatGPT Feature to Export Custom Stickers Directly to WhatsApp
An APK teardown of ChatGPT's Android app reveals a hidden 'ChatGPT Stickers' feature that would let users create custom stickers and export them directly into WhatsApp as sticker packs. The feature is unreleased and its public launch timeline is unknown.
Comments
Loading...