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 Copilot CLI reduces unnecessary model handoffs with improved orchestration logic
GitHub has updated Copilot CLI to reduce unnecessary handoffs between AI models. The improvement delivers faster command execution through better orchestration logic, implemented without adding new user configuration options.
GitHub Copilot CLI reduces unnecessary LLM handoffs through improved orchestration logic
GitHub has updated the orchestration logic in Copilot CLI to make it more selective about when to delegate tasks between language models. The changes reduce unnecessary handoffs and improve response times without introducing additional configuration settings.
Google Cuts AI Plus Subscription to $4.99, Doubles Storage in Direct Challenge to OpenAI
Google cut its AI Plus subscription price from $7.99 to $4.99 per month while doubling included storage from 200GB to 400GB. The move brings the pricing pressure already visible in markets like India — where OpenAI launched ChatGPT Go at $4.60 last August — directly to U.S. consumers.
Cline v3.89.0 Adds Claude Fable 5 Support, Fixes MiniMax M3 Thinking Controls
Cline, the AI-powered coding assistant, released v3.89.0 with support for Claude Fable 5 model integration. The update also fixes MiniMax M3 thinking controls across gateways and cleans up the Codex model list.
Comments
Loading...