Back to observatory
Application10 min read

Minimum Move for AI agents: the principle that prevents 90% of disasters

Of all four pillars of the DAMM framework — Delimitation, Asymmetry, Margin, Minimum Move — the last one most radically changes an AI agent's behavior. Not because it's the most important overall, but because it addresses the most common flaw in autonomous agents: the tendency to do too much, too fast.

The systemic flaw of AI agents

An AI agent doesn't hesitate. It doesn't have the doubt that restrains a human decision-maker when consequences are uncertain. When an agent identifies an action that maximizes the objective, it executes it. Completely. Immediately.

That's its strength — and it's also its vulnerability.

An agent managing an e-commerce inventory detects a growing demand trend for a product. Without the Minimum Move principle, the agent orders 10,000 units because the model predicts they'll be needed in the next 90 days. With Minimum Move, the agent orders 2,000 units (sufficient for 18 days at the current rate), verifies the trend holds, then decides whether to increase the order.

The difference: in the first case, if the trend was a temporary spike, the company ends up with 8,000 unsold units. In the second case, the maximum possible damage is a slightly oversized order of 2,000 units — a manageable, recoverable error.

The principle: reversibility as a design metric

Minimum Move isn't simply "do less." It's a design principle that optimizes for reversibility: every action should be the smallest version that produces a useful result AND can be corrected if it proves wrong.

For an AI agent, this translates into three operational rules:

Rule 1 — Decompose: if an action can be divided into smaller steps, divide it. The agent shouldn't reorganize an entire database — it should migrate one table, verify, then proceed.

Rule 2 — Prefer the reversible: between two actions that produce the same result, choose the one that can be undone. Sending a draft is reversible. Sending a final email is not.

Rule 3 — Produce information: every minimum move must generate data that informs the next move. The agent doesn't act for the sake of acting — it acts to learn.

Use case: marketing automation agent

An agent manages email campaigns for a SaaS company with 50,000 users. The goal is to increase the conversion rate of onboarding emails. The agent has identified a new template that showed +40% click-through rate in A/B testing.

Without Minimum Move: the agent changes the template for all 50,000 users. If the template works — perfect, +40% across the entire database. If the A/B test was biased by an unrepresentative sample and the template actually worsens conversion at scale — 50,000 users receive less effective emails, unsubscribe rates increase, and the damage is difficult to quantify.

With Minimum Move: the agent applies the new template to 10% of users (5,000) for 7 days. It measures not just click-through rate, but also effective conversion rate, unsubscribe rate, and revenue per email. If results confirm the A/B test, it expands to 25%, then 50%, then 100%. If not, it reverts to the previous template with damage limited to 5,000 users for 7 days.

The additional time required: 3 weeks. The risk eliminated: a potential disaster across 50,000 users.

Technical implementation: the "probe-verify-expand" pattern

Minimum Move for AI agents is implemented as a three-phase pattern the agent repeats iteratively:

Probe: the agent executes the action at the smallest possible scale. Orders 100 units, not 10,000. Modifies one record, not a million. Sends to 10 users, not 50,000.

Verify: the agent evaluates the probe result against predefined metrics. Is the result consistent with expectations? Are there unforeseen side effects? Do the data support expansion?

Expand: if verification is positive, the agent increases the action's scale. If negative, the agent stops and flags for human review.

This pattern is natively compatible with DAMM Health Score calculation. At each iteration, the agent recalculates the 4 pillar scores: Delimitation stays fixed, Asymmetry decreases as data confirm the action, Margin is updated, and Minimum Move guides the next expansion's size.

Why 90% of disasters stem from the absence of Minimum Move

I've analyzed dozens of documented incidents where AI agents caused significant damage. In nearly all of them, the pattern is identical:

  1. The agent identified a correct action in the immediate context
  2. It executed the action at maximum possible scale
  3. An unforeseen factor made the action harmful at that scale
  4. The action wasn't reversible, or reversal took longer than the damage

In nearly all these cases, applying Minimum Move would have: - Limited the initial action's scale - Generated data that would have revealed the unforeseen factor - Allowed correction before the damage became significant

It's not an absolute guarantee. But it's a principle that transforms catastrophic errors into manageable ones. And for an autonomous system operating 24/7, that difference is worth everything.

Minimum Move as an operating philosophy

For a company integrating AI agents into its processes, Minimum Move isn't just a technical parameter. It's an operating philosophy that changes how you think about automation.

The goal isn't to automate as much as possible, as fast as possible. The goal is to automate incrementally, verifiably, and reversibly. Every move generates information. Every piece of information improves the next move.

It's not slower. It's safer. And in the long run, it's also faster — because the time saved by avoiding a single disaster compensates for weeks of incremental deployment.

The DAMM framework, with Minimum Move as its guiding principle, transforms AI agents from systems that "do things" to systems that "learn by doing small things" — a difference that, for anyone managing autonomous agents in production, is worth far more than a percentage point of efficiency.

Want to go deeper? Read the complete book