firehose> #llmops

Step Isolation

A steering lever for the failure where an agent doesn't do enough "leg work" on an intermediate step — it under-invests in exploring, or in asking clarifying questions, and moves on too soon. The source's diagnosis: the agent can see the ultimate goal and rushes toward it. The canonical case is plan mode, whose two steps are "ask clarifying questions" then "create a plan" — the agent, seeing that the goal is a plan, does a token amount of clarifying and then eagerly produces the plan.

The fix is step isolation: split the multi-step skill so the agent sees only one step at a time, hiding the future goal (and future steps) it would otherwise sprint toward. The example: instead of a single plan-mode skill, a separate grill-with-docs skill is the clarifying- questions phase — the agent only sees that part — and only after it completes does control pass to /to-prd for planning. Same two logical steps, but the agent experiences them one at a time, which reliably forces more leg work on the current one. It isn't always necessary to split a skill into individual steps, but where you specifically need an extra chunk of effort, "there's no technique like it."

Claims


Linked from