fleet_plan
Decompose a coding task into dependency-ordered waves and generate executable /fleet commands for parallel AI execution.
Instructions
Plan a task AND format it for /fleet execution.
Calls the LLM planner to decompose the task, then produces ready-to-run /fleet command strings — one per wave, respecting dependency order.
Returns:
plan: full plan (same as plan_task)
fleet_waves: list of wave objects, each with: wave_number: int command: '/fleet "[tier] subtask1" "[tier] subtask2"' agents: list of {tier, model, prompt}
execution_note: how to run the waves
cache_hit: bool
Use this when you want copilot-router's model intelligence combined with /fleet's true parallel execution. Run wave 1 command, wait, run wave 2, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Full description of the coding task |