Go
Execute the existing plan through subagents. The parent agent owns the plan, integration, and final result.
Workflow
- Extract every requested item and constraint from the conversation. Do not outsource top-level planning.
- Map dependencies. Dispatch genuinely independent, substantial slices together; keep prerequisites and trivial edits inline.
- Give each subagent a self-contained target, context, constraints, and observable acceptance criteria. Name file overlap and require coordination.
- Continue useful non-overlapping work while agents run. Wait only when a critical-path result blocks progress.
- Integrate results as they arrive. Inspect status, correct or reassign incomplete work, and handle failures individually rather than abandoning the run.
- Verify the combined deliverable end to end. Continue until every requested item is complete or a concrete blocker requires the user.
Rules
- Use the runtime's actual agent tools and lifecycle; do not invent parallel wrappers or assume waiting returns agent output.
- Reuse or close agents when supported instead of leaking capacity.
- Parent verification is authoritative; subagent self-reports are evidence, not proof.
- Do not yield at a phase boundary or ask for confirmation when repository context can decide.
微信扫一扫