STRATEGY

Which Processes Are Actually Worth Automating?

Anvio's founding engineer · Updated August 10, 2026 · 9 min read

A process is worth automating when it's repetitive, consistent enough that software can reliably do it the same way every time, and expensive enough — in hours, errors, or delay — that removing it pays for the build within a reasonable time. Miss any one of those three and automating it either won't work well or won't be worth what it costs. This guide is the framework we actually use when a client asks "what should we automate first," including the parts of that answer that are sometimes "not yet."

Why this question matters more than it sounds

Most automation projects don't fail because the technology doesn't work. They fail because the wrong process got automated first — something too rare to matter, too inconsistent to automate reliably, or too cheap to be worth the build cost, while the process actually eating the business's time went untouched. Getting this decision right before any building starts is worth more than any amount of engineering skill applied to the wrong target.

The four-question test

Ask these four questions about any candidate process, in order. A weak answer to any one of them is a real reason to reconsider, not just a note.

1. How often does it happen? Frequency is what turns a small time cost into a large one. Something that takes five minutes and happens twice a day costs roughly 40 hours a year — genuinely worth automating. The same five minutes happening twice a month costs 2 hours a year, which won't cover a build's cost for a long time, if ever. Low-frequency processes are almost never worth automating first, regardless of how annoying they are when they happen.

2. Is it consistent, or does it need judgement? Automation is reliable at doing the same thing the same way, repeatedly. It's unreliable at handling genuine judgement calls — a pricing exception, an unusual complaint, a situation your documentation doesn't cover. If a process is "usually the same steps, but sometimes needs a judgement call," the honest answer is often to automate the usual path and route the exceptions to a person — not to force the exceptions through automation too, which is where most of the "the AI got it wrong" stories actually come from.

3. What does it cost today, concretely? Not a feeling — a number. Hours per week, multiplied by loaded hourly cost (salary plus overhead, not just take-home pay), gives you an actual annual figure to weigh against a build estimate. "It's annoying" is not the same as "it's expensive," and plenty of annoying processes turn out to be cheap once actually measured — which is useful information, not a disappointing one.

4. What happens when it's wrong? This is the question people skip most often, and in practice it matters just as much as the cost question above it — arguably more, since a cost estimate that's off by 20% is a minor planning error, while an unrecoverable wrong action is a real incident. A wrong chatbot answer is recoverable — a person corrects it. A wrong automated action — an incorrect order shipped, a discount applied to the wrong customer, a record updated incorrectly — has to be undone, and undoing costs more than the automation ever saved on the occasions it goes wrong. Processes where a mistake is expensive or hard to reverse need either a much higher confidence bar before automating, or a human-in-the-loop checkpoint before anything actually happens — not skipping automation entirely, but building it more carefully.

What should you not automate yet?

Being direct about this is the most useful thing this guide can do, because almost nobody selling automation says it plainly.

Low-frequency processes, per question one — the payback period is too long to justify the build, however annoying the process feels in the moment it happens.

Processes that are mostly judgement, per question two — hiring decisions, pricing negotiations, anything where "it depends" is the honest answer more often than not. These can sometimes be assisted by AI — surfacing relevant information faster — but shouldn't be automated in the sense of acting without a person deciding.

Processes you haven't actually measured. If you can't answer question three with a real number, you're not ready to automate it — you're ready to spend a week measuring it properly first, which is cheap and removes the guesswork from everything that follows.

Processes in active flux. If how you do something is likely to change significantly in the next few months — a new product line, a pricing model under review — automating the current version means rebuilding it shortly after. Let it stabilize first, or automate the part that won't change and leave the rest manual a little longer.

Processes that only look expensive because they're badly organized. Sometimes the real fix is a fifteen-minute process change, not a build — a shared template, a clearer intake form, a single person owning a step that currently gets passed around. Automating a disorganized process just makes the disorganization run faster and more expensively. Fix the process first if the fix is genuinely that cheap; automate what's left once it's actually a stable, repeatable thing to automate.

How do you estimate the actual savings before building anything?

Three numbers, multiplied together: hours per week spent on the process, loaded hourly cost of the people doing it, and 52 for the year. That gives you the current annual cost. Compare it against a build estimate and a realistic timeline to first-live — most well-scoped automations pay for themselves within the first year if the frequency and cost numbers above are genuinely high enough to justify starting; if the payback period stretches past that, it's a legitimate reason to deprioritize, not a sign the project was scoped badly.

This doesn't need to be precise to be useful — a rough estimate that's honestly measured beats a confident guess every time, because the honest estimate tells you when you're wrong before you've spent anything, and the confident guess tells you after.

What's the difference between "worth automating" and "worth automating first"?

A process can pass all four questions and still not be the right one to start with, because sequencing matters on its own. The best first automation is usually the one that's highest frequency, most consistent, and lowest-risk if something goes wrong — not necessarily the one with the single biggest annual cost. Starting with a smaller, safer win builds the internal case (and the internal trust) for the bigger, riskier automation that follows. Starting with the hardest, highest-stakes process first — because it has the biggest number attached — is how a first automation project becomes a cautionary story instead of a foundation to build on.

A worked example

A retailer has three candidate processes: (1) confirming WhatsApp orders manually, 40 times a day, purely mechanical, low risk if occasionally delayed by a few minutes; (2) approving custom bulk-order pricing, twice a week, genuine judgement about margin and relationship; (3) reconciling monthly supplier invoices, once a month, mechanical but currently error-prone because it's done in a rush.

Process 1 passes all four questions cleanly — high frequency, fully consistent, real measured cost, low-risk failure mode. Clear first automation. Process 2 fails question two outright — it's judgement, not a rule, and automating it risks a margin mistake that costs more than the time it saves; leave it manual, possibly with better reporting to support the judgement rather than replace it. Process 3 passes questions one through three but needs care on question four — a reconciliation error is expensive to catch late, so it's worth automating with a mandatory human review step before anything is finalized, rather than fully autonomous.

That's three different answers from one framework, applied honestly to three real candidates — which is exactly the point. A framework that says "automate everything" isn't a framework, it's a sales pitch. The value of doing this exercise properly is precisely that it produces different answers for different processes; if every process you run through it comes back "yes, automate it," that's usually a sign the questions aren't being applied honestly rather than a sign your business happens to have unusually automatable processes.

What about the exceptions, once you've automated the main path?

Every real process has a long tail of edge cases, and deciding what happens to them is part of the automation, not an afterthought bolted on later. The useful pattern is a confidence threshold: the automation handles what it can do reliably and hands off anything else to a person, with full context attached rather than a bare notification. This is different from trying to automate 100% of cases before launching — that's usually what turns a two-week project into a six-month one, chasing diminishing returns on the rarest 5% of cases while the common 95% sits unautomated the whole time.

A useful discipline: launch once the automation handles the clear majority of real cases correctly, route the rest to a person, and revisit the threshold after a month of real data. You'll know from the actual handoff volume whether it's worth tightening the automation further or whether the exceptions really were rare enough to leave as manual work indefinitely.

Does this decision ever need revisiting?

Yes, on both sides. A process that failed question one today — too infrequent to justify automating — can become worth it if the business grows and the frequency climbs. And a process that's automated today can stop being worth maintaining if the business changes shape around it: a workflow built for 20 orders a day doesn't necessarily need re-architecting at 200, but it's worth checking rather than assuming. Revisit this framework roughly every six months against your actual current volumes, not as a one-time exercise done at the start of the relationship and never touched again.

What if I'm not sure?

Measure first. A week of honestly tracking how often something happens and how long it takes turns a guess into a real answer to question one and three, and usually makes questions two and four obvious once you're looking at the actual pattern rather than the memory of the worst instance of it. If you'd rather have that conversation with someone than run it yourself, that's exactly what a first call with us is for — we'll apply this same framework to your specific list, including telling you plainly which ones aren't worth it yet.

Book a free consultation and bring your list — the most useful output of that first 30 minutes is often the items we tell you to leave alone, and knowing that up front is worth more than another vendor telling you everything on it is worth automating.

Anvio's founding engineer

Anvio's founding engineer writes the guides on this site — drawn from the same automation, web development, and SEO work the rest of the site describes, not written by a separate content team.

Let's talk

Still deciding?

30 minutes, no deck. Describe the situation and we'll tell you which of the options above we'd pick for it — including when the answer is to do nothing yet.

Book a free consultation