Sub-agent
Can I split a big task among a few helpers at the same time, then get one combined result?
Can I split a big task among a few helpers at the same time, then get one combined result?
The main Agent defines each subtask’s goal, input, permissions, and delivery format so multiple Agents do not do the same work.
Sub Agents suit clearly bounded work that can be verified independently; splitting work also adds coordination cost.
Split bounded work first:Assign separate accessibility, test, or documentation checks with clear read/write boundaries and completion criteria.
Work in separate context:Each sub-agent can focus on its own evidence and tools, returning only the relevant conclusions.
The main agent synthesizes:It waits for required evidence, resolves overlap or conflict, and forms one final result. Shared-file edits need clear ownership or sequencing.
Split this pre-release review across three read-only subagents: one for accessibility, one for API error handling, and one for test gaps. Each must return file locations and evidence without editing code. Wait for all three, merge duplicates, and produce one risk-ranked list. Ask me before making changes.