Automating Everything Except the One Decision That Needs a Person
A refund approval workflow gets fully automated end to end: request comes in, eligibility gets checked against policy, refund gets issued automatically if the criteria match. It works well for the ninety percent of requests that fit cleanly within policy. The trouble starts with the other ten percent, where the automation still forces a decision — approving something it shouldn’t, or denying something a human would have clearly seen as a reasonable exception — because the workflow was built to automate the whole decision, not to automate everything up to the point where a genuine judgment call was actually needed and then hand that specific piece off to a person.
Why Most Workflows Have a Judgment Point Buried Inside Them
Almost every business process that looks fully mechanical from the outside has at least one step that isn’t really mechanical at all — a point where the right answer depends on context, nuance, or a tradeoff that doesn’t reduce cleanly to a rule, however carefully that rule gets written. A refund policy can specify clear criteria for the typical case, but it can’t anticipate every unusual circumstance a real customer situation might present, and forcing every case through the same automated rule either produces bad outcomes on the edge cases the rule wasn’t built for, or requires the rule to become so elaborate, trying to account for every conceivable exception, that it becomes nearly as complex and fragile as just having a person make the call in the first place.
The Difference Between Automating a Process and Automating a Decision
It’s worth separating two things that often get conflated in automation projects: automating the process around a decision, and automating the decision itself. Automating the process — gathering the relevant information, checking it against clear criteria, routing it to the right place, tracking the outcome — is almost always valuable and rarely controversial. Automating the actual decision, the part that requires weighing tradeoffs or exercising judgment about ambiguous cases, is where automation projects most often overreach, because the mechanical steps around a decision are the easy, satisfying part to automate, and it’s tempting to keep pushing the same logic just a little further until it’s making the judgment call too, even when nobody explicitly decided that was the goal.
Identifying Where the Real Judgment Point Sits
| Process Step | Usually Mechanical | Usually Needs Judgment |
|---|---|---|
| Gathering required information | Yes | — |
| Checking against clear, stated criteria | Yes | — |
| Handling a case that clearly meets or clearly fails criteria | Yes | — |
| Handling a case that’s ambiguous or borderline | — | Yes |
| Weighing a genuine tradeoff with no clean rule | — | Yes |
Designing the Handoff Instead of Skipping Past It
Once the judgment point in a workflow is identified, the design task shifts from “how do we automate this too” to “how do we hand this specific piece off to a person as cleanly as possible.” That means the automation should do everything it can to make the human’s judgment call fast and well-informed — surfacing all the relevant context in one place, flagging exactly why the case fell outside clean automated criteria, and routing it to someone with the right authority and context to actually make the call, rather than dumping an under-explained edge case into a generic queue where whoever picks it up has to reconstruct the full context from scratch before they can even begin to decide anything.
Why Skipping the Human Step Often Costs More Than It Saves
The appeal of automating past the judgment point entirely is obvious: it removes a bottleneck and produces a fully automated process with no manual steps to slow it down. What often gets underweighted is the cost of the bad decisions that flawed automation of a genuinely judgment-dependent step produces — refunds issued that shouldn’t have been, exceptions denied that should have been granted, a customer treated unfairly by a rule that couldn’t see their specific situation. These costs are usually diffuse and delayed, showing up as customer complaints, chargebacks, or quiet churn rather than as an obvious, immediate failure, which makes it easy to underestimate them relative to the very visible, immediate efficiency gain of full automation.
Resisting Pressure to Push the Rule Further Instead of Adding the Person Back
When an edge case exposes a gap in an otherwise automated workflow, the instinctive fix is often to patch the rule — add one more condition, one more exception clause, one more branch of logic — rather than accepting that this particular case needed a person’s judgment from the start. Each individual patch feels like a small, reasonable refinement, but a rule that’s been patched repeatedly to handle edge case after edge case tends to become increasingly fragile and increasingly difficult for anyone to fully understand or maintain, while still failing to anticipate the next unusual case that inevitably comes along. At some point, recognizing that the judgment point simply belongs to a human, rather than continuing to expand the rule to try to swallow it, produces a more maintainable and more reliably good outcome than an ever-growing patchwork of conditional logic trying to replace judgment it was never built to replicate.
Measuring the Automation by Outcome Quality, Not Just Throughput
A workflow automation that removes a human judgment step often looks like a clear win on throughput metrics — faster processing, lower cost per transaction, fewer manual touches — while a decline in outcome quality on the harder cases goes unmeasured, because nobody is specifically tracking how well edge cases are actually being handled compared to before. Deliberately tracking outcome quality on the subset of cases that fall outside clean automated criteria, not just overall throughput, catches this tradeoff before it accumulates into a larger pattern of poor edge-case handling that erodes trust in the process as a whole, even while the aggregate efficiency numbers keep looking good.
Building Automations That Know Their Own Limits
The most durable automations aren’t the ones that try to handle every possible case within their own logic. They’re the ones explicitly designed to recognize the boundary of what they can reliably handle, and to hand off cleanly, with full context, to a human the moment a case crosses that boundary. This requires more upfront thought than building a rule and hoping it covers everything, because it means honestly identifying where judgment is genuinely required rather than assuming it can eventually be automated away with enough additional logic. Businesses that build this boundary-awareness into their automations from the start end up with systems that handle the routine cases fast and the hard cases well, rather than systems that handle the routine cases fast and the hard cases badly.
By GoCRMP Editorial · Updated September 17, 2026
- business automation
- human judgment
- workflow design