In lesson 01 you saw when one prompt isn't enough. Now, before learning to build chains, Orbit stops you cold: most tasks aren't multi-step. If you split everything, you'll pile on cost, latency, and bugs without gaining anything.
Orbit's rule: one good single prompt beats five mediocre chained prompts. Multi-step pays when the problem really branches. Not when you imagine it could.
Every step you add brings:
If the task fits in one prompt and you can validate it with regex, keep it in one prompt. Complexity is earned, not gifted.
Before you split, write the task in one line. If the line has one real decision, it stays in one prompt. If it has several genuinely independent decisions (classify AND extract AND summarize), then split.
Look at the two designs on the right. One is honest: one decision, one prompt. The other invents steps to look like engineering. Pick the one you'd ship.