Mapping a Workflow Before You Automate It
Why automation projects fail before the tooling is even chosen
The typical failure isn't a bad AI model or a buggy integration — it's that the workflow being automated was never actually mapped out clearly enough to automate correctly. Ambiguity that a human handles instinctively ("use judgment here") becomes a hard failure point once there's no human making that judgment call anymore.
Step 1 — Shadow the process as it actually happens
Before writing anything down, watch the workflow run several times as a human currently does it — not the documented version of the process, the actual version, which usually diverges from the documented one in small but important ways. The gap between "how it's supposed to work" and "how it actually works" is exactly where automation projects go wrong if it's not caught first.
Step 2 — Separate mechanical steps from judgment calls
Every step in the workflow falls into one of two categories: mechanical (the same input always produces the same action — no judgment involved) or a judgment call (a human is weighing context that isn't fully captured in the visible data). Mechanical steps are safe to automate directly. Judgment calls need either a defined rule that replaces the judgment, or a human checkpoint that keeps the judgment in place — they cannot simply be automated as-is without one of those two things happening.
Step 3 — Identify every data source the workflow actually touches
- What system does the data start in?
- What has to be true about that data for the next step to work correctly (format, completeness, freshness)?
- Where does the workflow currently break when that data is missing or malformed — and what does a human do in that case today?
That last question matters most: the edge cases a human currently handles by exception are exactly the cases an automated workflow will hit and mishandle if they aren't explicitly planned for.
Step 4 — Turn the map into an automation spec
The output of this process isn't a diagram for its own sake — it's a spec: which steps automate directly, which judgment calls get replaced with a defined rule, which judgment calls keep a human checkpoint, and what happens for every edge case identified in Step 3. This spec is what Stage 2 of the Human-in-the-Loop Automation Framework actually gets built from.
The time this actually takes
Mapping a real workflow properly usually takes longer than people expect — often longer than building the automation itself. That's not wasted time; it's the reason the resulting automation doesn't need to be rebuilt three months later after quietly failing on cases nobody planned for.
Book a free 10-minute consultation
Sapun Lamichhane is a business growth analyst and founder of Arcetis, based in Pokhara, Nepal. If you want a second opinion on your account, your funnel, or whether a channel is worth your budget at all, book a free 10-minute call — no pitch, and a straight answer even when the answer is that you do not need help.
Direct: +977 9846162626 · lamichhanesapun2@gmail.com
This post supports the frameworks documented in full on the Authority page.