Skip to content
AI & Automation5 min read

Which Workflows Are Actually Worth Automating With AI

A four-test method for deciding which business workflows justify AI automation, which need a plain script instead, and which should be left alone entirely.

The short answer

A workflow is worth automating with AI when it has high volume, a tolerable cost of being wrong, a judgment step that rules out a simple script, and an owner who can define what a correct output looks like. Workflows that fail any one of those four tests should be automated conventionally, redesigned, or left alone.

Key takeaways

  • Volume, not difficulty, is what makes automation pay. A hard task that runs twice a month is not worth building for.
  • If a rule-based script can do the job, use the script. It is cheaper, faster, and it cannot be wrong in novel ways.
  • The cost of a wrong output sets the design, not the model choice. Reversible errors allow autonomy; expensive ones require a human in the loop.
  • If nobody can say what a correct output looks like, you cannot evaluate the system, which means you cannot safely run it.
  • Most companies should automate two or three workflows well rather than twelve badly.

Every leadership team we work with arrives with a list. Somewhere between eight and thirty processes that somebody thinks AI could handle. The list is usually right that those processes are painful and usually wrong about which of them to touch first.

The question is not whether a model can perform the task. In 2026 the answer is almost always yes, at some level of quality. The question is whether the economics survive contact with your actual volume, your actual error tolerance, and your actual ability to tell good output from bad. Four tests settle it.

Test one: does it run often enough to matter?

Automation pays back on frequency, not on difficulty. A genuinely hard task that runs twice a month is a bad target, however satisfying it would be to solve. A dull task that runs four hundred times a week is a good one.

The arithmetic is simple enough to do in a meeting. Take the minutes the task consumes, multiply by how often it runs in a year, and convert to a loaded hourly cost. A four-minute task run 600 times a month is 480 hours a year. At a loaded rate of $45 an hour that is roughly $21,600 of annual labour, which will comfortably fund a build in the low tens of thousands and keep paying afterwards. The same task run 20 times a month is 16 hours a year, or about $720. Nothing you build will earn that back.

Do this for every item on the list before you discuss any of them in detail. It usually eliminates half.

Test two: would a plain script do it?

This is the test most often skipped, and skipping it is expensive. A large share of what gets pitched as AI work is deterministic: moving fields between two systems, applying a documented rule, reformatting a file, triggering a notification when a threshold is crossed. Those are integrations and scripts. They are cheaper to build, faster to run, cost nothing per invocation, and fail in predictable ways.

The honest test is whether you could write the rules down. If a competent new hire could follow a one-page instruction sheet and produce the right answer every time, you do not need a language model. You need an engineer and a week.

AI earns its place where the input is unstructured or the rules resist enumeration: reading a supplier email that could be phrased a hundred ways, extracting terms from a contract nobody standardised, classifying a support ticket where the customer describes symptoms rather than causes, drafting a first pass that a person will edit. That is genuine judgment under ambiguity, and it is where the technology is worth its cost and its risk.

Test three: what does a wrong answer cost?

Every automated workflow will be wrong sometimes. The design question is what happens when it is, and that answer, not the model you choose, determines the shape of the system.

Error cost sets the design
If a wrong output isThen the system shouldExample
Cheap and reversibleRun autonomously, sampled for quality after the factTagging inbound tickets by topic
Visible but recoverableRun autonomously with confidence thresholds that escalateDrafting a reply a human sends
Expensive or publicRequire human approval before the action commitsIssuing a customer refund or a price quote
Regulated or safety-bearingAssist a person rather than act, with a full audit trailAnything touching clinical, legal, or financial advice

Teams tend to argue about accuracy percentages in the abstract. That argument goes nowhere. Ask instead what the worst plausible wrong output does to the business, who would notice it, and how long it would take to undo. A workflow where the answer is genuinely alarming is not disqualified, but it belongs in the assist column, where the model saves time without holding the pen.

Test four: can anyone define a correct output?

This is the test that quietly kills more pilots than any other. Before you build, someone has to be able to look at fifty real examples and say, unambiguously, which outputs are acceptable. If your best subject-matter expert cannot do that, or two experts disagree on half of them, you do not yet have a specification. You have a preference.

The practical consequence is that you cannot build an evaluation harness, and without one you have no way to know whether a prompt change, a model upgrade, or a shift in your input data has degraded quality. You will find out from a customer.

Where the definition is genuinely hard, the fix is usually to narrow the scope until it becomes easy. Not "handle supplier correspondence" but "extract delivery date, quantity, and part number from supplier confirmation emails". Narrow problems have checkable answers.

If you cannot write the test, you are not ready to build the system. That is true of software generally and unforgiving of AI specifically.

Running the triage

Put the list on one page with four columns and score each workflow honestly. Volume, in annual hours. Rules-based or judgment. Error cost, on the four-level scale above. Definable output, yes or no.

  1. Anything failing the volume test comes off the list, unless you can name a specific cycle-time or revenue reason to keep it.
  2. Anything rules-based moves to a separate list. That list is an integration project and it is probably cheaper and more valuable than the AI one.
  3. Anything without a definable output goes to a scoping conversation, not a build. Narrow it until it has one.
  4. What remains gets ranked by annual hours divided by implementation difficulty, and you build the top item. One item.

The instinct at this point is to start three pilots at once because they all look promising. Resist it. Three half-built pilots produce no measured savings and a lot of ambiguity about why. One workflow taken all the way to production, with an evaluation harness and a monitored cost ceiling, teaches your team how to do the next one and gives you a number you can defend.

What good looks like ninety days in

A well-chosen first workflow produces four things by the end of a quarter: a system running against real data, a test set with scored results you can watch over time, a documented cost per run, and at least one person on your team who understands the whole thing well enough to change it.

If you have all four, the second workflow is dramatically cheaper than the first, because the hard parts were never the model. They were the plumbing, the evaluation discipline, and the organisational habit of deciding what correct means before building.

If you have none of them ninety days in, the problem is almost never the technology. Go back to test four.

Frequently asked questions

How do I know if a workflow is better suited to a script than to AI?

Ask whether you could write the rules on one page and have a new hire follow them to a correct answer every time. If yes, build a script or an integration. Use AI where the input is unstructured or the rules cannot be enumerated, such as reading free-text emails, classifying ambiguous support tickets, or extracting terms from non-standard documents.

What volume makes AI automation worth the investment?

Convert the task to annual hours: minutes per run, multiplied by runs per year, divided by 60. Multiply by a loaded hourly cost. As a rough threshold, a workflow consuming under roughly 100 hours a year rarely justifies a custom build unless it blocks revenue or has an outsized error cost.

Should a human review AI output before it reaches a customer?

It depends entirely on what a wrong output costs. Cheap, reversible errors such as internal ticket tagging can run autonomously with after-the-fact sampling. Anything expensive, public, regulated, or safety-bearing should require human approval before the action commits.

How many AI workflows should a mid-sized company automate at once?

One, taken fully to production with an evaluation harness and a monitored cost ceiling, before starting a second. Parallel pilots produce ambiguity about what worked, and most companies get more value from two or three well-run automations than from a dozen partial ones.

What is an evaluation harness and why does it matter?

It is a fixed set of real inputs with known-correct outputs, run automatically against your system so quality becomes a score you can track. Without one, a prompt change, a model upgrade, or a shift in input data can silently degrade quality and you will learn about it from a customer rather than from a dashboard.

More questions are answered on the frequently asked questions page.

Your situation

General advice only gets you so far.

Describe the business and the constraint you are hitting. You will get a written assessment back within two business days from the person who would run the work.