Make the Skill Stepwise
Split the skill into ordered phases; finish one before starting the next.
Where you'll practice this
2 Promptles scenarios teach this principle directly. Each one drops you into a real engineering ticket and asks you to write the prompt you'd send to Claude Code.
The Diagnose Skill
Your team has been bitten by 'just-fix-it' patches that solve symptoms without understanding root causes. You want a `diagnose` skill the agent runs when the user reports a bug. The skill should walk through five ordered phases — reproduce the failure, minimize the input, form a…
The TDD Skill
You're authoring a `tdd` skill that walks the agent through one red-green-refactor cycle at a time. The current draft tries to do every cycle in a single response: it lists the feature, writes all the tests, makes them pass, refactors, and reports — and the result is…
Other principles in Multi-Step
Architect Before You Ask
Ask for a Plan First
Request a plan before any multi-file change — approve the approach, then let it code.
Break the Workflow into Steps
Number each step so Claude builds pieces, not monoliths.
Combine Context with Action
Coordinate Across Files
Delegate to a Subagent
Spawn a subagent for research-heavy subtasks; brief it on scope, limits, and report shape.