Why Automation Amplifies Process Failures
Why does automation amplify process failures?
Automation amplifies process failures because it removes the human checkpoints that function as informal quality gates, allowing errors to propagate at machine speed through workflows that were never designed to operate without human intervention at critical junctures.
The scheduling workflow I inherited had been operating for 4 years with 9,000 manual steps per cycle. Each step was documented in a procedure manual that weighed, metaphorically, as much as the frustration of the people performing it. The obvious move was to automate everything. I nearly made that mistake.
Before automating, I mapped every step and categorized each one: value-adding, error-correcting, or redundant. The distribution was illuminating. 4,200 steps added value (moving data, assigning resources, generating outputs). 2,100 steps corrected errors introduced by earlier steps. 2,700 steps were redundant, inherited from previous versions of the process that no one had cleaned up.
How can teams identify error-correcting steps before automating?
Teams can identify error-correcting steps by mapping the causal chain of every manual correction, tracing each fix backward to the step that introduced the error, and asking whether the error would exist if the upstream step were redesigned rather than patched.
I developed a simple taxonomy for this analysis:
- Root steps: Steps that perform the intended operation correctly. These are candidates for automation.
- Patch steps: Steps that correct errors from root steps. These should not be automated; they should be eliminated by fixing the root step. Automating a patch step encodes both the error and its correction, doubling the maintenance burden.
- Ghost steps: Steps that address conditions that no longer exist. The scheduling workflow contained 47 steps related to a room-booking system that had been replaced 18 months prior. No one had removed the steps. Automating them would have consumed resources to manage a non-existent dependency.
In the 9,000-step scheduling workflow, eliminating patch steps and ghost steps reduced the actual work to 4,200 value-adding steps. Automating 4,200 correct steps is a fundamentally different proposition than automating 9,000 steps of mixed quality. The reduction was not an optimization. It was a prerequisite for safe automation.
What is the right sequence for process automation?
The right sequence for process automation is: map, categorize, eliminate, redesign, then automate, never the reverse, because automating before understanding ensures that the machine inherits every flaw the human learned to work around.
The sequence I now follow for every automation project:
- Step 1: Map: Document every step as it is actually performed, not as the procedure manual says it should be performed. These are often different documents. The manual describes the ideal. The practitioner performs the real.
- Step 2: Categorize: Label each step as value-adding, error-correcting, or redundant. This requires the participation of the people who actually perform the work. Managers routinely undercount error-correcting steps because they cannot see the informal corrections that practitioners make automatically.
- Step 3: Eliminate: Remove redundant steps entirely. Eliminate error-correcting steps by fixing their root causes. This is the hardest phase because it often requires changing upstream processes owned by other teams.
- Step 4: Redesign: Restructure the remaining value-adding steps for automated execution. This means standardizing inputs, defining explicit validation criteria, and building error-handling into the design rather than relying on human improvisation.
- Step 5: Automate: Build the automated workflow from the redesigned process. Monitor heavily for the first 90 days. The monitoring should focus not just on whether the automation runs but on whether the outputs match the quality standard that the human process, with all its informal corrections, previously achieved.
What does the automation instinct reveal about organizational thinking?
The instinct to automate before understanding reveals an organizational preference for speed over comprehension, for the appearance of efficiency over the reality of operational health.
I have been in meetings where the directive was “automate this by end of quarter” without any prior analysis of what “this” actually consisted of. The assumption was that automating a process is inherently beneficial, that any automated version is better than any manual version. This assumption is wrong, and the consequences of acting on it are expensive.
An automated process that produces errors at machine speed generates more damage per hour than a manual process where a human catches half the errors through informal review. The manual process is slower but safer. The automated process is faster but brittle. The difference is that the manual process fails gracefully, with human judgment compensating for design flaws. The automated process fails catastrophically, with machine speed ensuring that the damage compounds before anyone notices. The right question is never “can we automate this?” The right question is “should we automate this as it currently exists, or must we fix it first?” In my experience, the answer is almost always the latter.