← All notesFIELD NOTE

Why human-approval gates change what you can automate

4 min read

Most hesitation around automating a workflow isn't really about whether an AI can do the task. It's about what happens if it does the task wrong, at scale, without anyone noticing until a customer or a supplier is on the other end of the mistake.

An explicit human-approval gate changes that calculus entirely. If a system can only act on a candidate, a message, or a record after a person has marked it approved, then the automation's job shrinks to something much safer: prepare a good recommendation, not make an irreversible decision.

This sounds like a small design choice, but it changes what you're willing to automate. Without a gate, teams tend to only automate the lowest-risk, most reversible steps: formatting, tagging, moving data between systems. With a gate, you can automate the expensive part too - research, drafting, scoring, prioritization - because the system's output is a recommendation, not an action.

The gate also clarifies where the automation's responsibility ends. A workflow that researches a supplier and writes a summary for review has one job: produce something useful enough that the approval decision is easy. It doesn't need to be perfect, because a person is still the last checkpoint before anything external happens.

In practice, the gate is usually just a status field. A record moves from 'new' to 'approved' when a person changes it, and that status change is the only thing that triggers the next automated stage. No polling, no guessing, no automation quietly deciding on its own that something looks good enough to proceed.

The tradeoff is throughput: nothing moves faster than a human is willing to review it. That's not a flaw, it's the point. The goal of most of these systems isn't to remove the person, it's to remove the repetitive work around the decision so the person can spend their limited attention on the decision itself.

If you're evaluating whether a process is a good automation candidate, the honest first question usually isn't 'can AI do this?'. It's 'what does the approval step look like, and who is willing to own it?'. Once that's answered, the rest of the design gets much easier.