Law 06 · Reasoning & Planning

Think Before You Touch

Spend reasoning tokens before you spend actions.

Diagram explaining Think Before You Touch

The principle

Asking a model to reason step by step before answering measurably improves results, and for an agent the stakes are lopsided. A reasoning trace is cheap and easy to undo. An executed action, a sent email, a dropped table, a charged card, is not. Letting the model lay out its plan in tokens before it commits is the cheapest insurance you can buy.

Why it happens

A plan is cheap and reversible. A tool call may not be. Asking the model to state the target, scope, and expected effect before acting gives you a low-cost checkpoint before the expensive step. ReAct showed that interleaving reasoning and action helps agents track state and recover from surprises, but the broader rule is simpler: spend disposable tokens before irreversible actions. If the plan is wrong, discard it. If the email is sent, the table is dropped, or the card is charged, the cost is real.

Watch for

In practice

Your ops agent gets 'clean up the staging records' and immediately fires a DELETE, dropping rows a teammate needed because it never reasoned about scope. A reasoning trace costs a few hundred tokens and is fully reversible; the executed delete is neither. Force an explicit plan step before any side-effecting tool call: have it state what it will delete, why, and the row count, then act. Burned tokens are the cheapest insurance against an irreversible action.

Apply it

  1. Require an explicit reasoning or plan step before any tool call that has side effects.
  2. Make the plan state the exact target, scope, and expected effect (for example the row count) before acting.
  3. Treat reasoning tokens as cheap insurance and spend them freely ahead of any irreversible action.

The takeaway

Force an explicit reasoning or plan step before any tool call that has side effects. Burned tokens are far cheaper than a wrong action.

Sources and further reading

Related laws

Get the audit kit Access the buyer edition Back to all 50 laws