In the previous Track you learned to decompose a task inside a single prompt: role + context + examples + format, all together. For small, well-scoped tasks, that's enough.
But for big tasks (an incident report, a migration plan, a technical proposal) a single prompt brings back a mediocre output on five things at once. The timeline comes out weak because the model spent tokens thinking root cause. The impact comes out generic because it ran out of attention.
The multi-turn equivalent technique: decompose the task into a sequence of turns, where each turn delivers ONE piece and you review it before asking for the next.
In a single prompt, the model has to satisfy 5 objectives at the same time. Quality per objective drops. In separate turns, each turn has ONE objective. the model puts all its tokens on it. and you review it before the error propagates to the next.
Same idea as in software: a function doing 5 things is hard to test. 5 functions doing 1 thing each are easy. Multi-turn is the "one function at a time" version of prompt engineering.
For small tasks (classify a message, extract a date), decomposing is overkill. A solid prompt is enough. Multi-turn decomposition pays off when:
On the right you have an incident report for the captain. Hex put the 6 turns out of order. Put them in order.