Choosing Your First Workflow to Automate: A Scoring Method That Beats Gut Feel
Ananya Ploesu · · 6 min read
The short answer
Score candidate workflows on volume, variance, decision complexity, cost of error, data availability and exception ownership. The best first automation is high-volume, low-variance, with clear data and a named owner for exceptions, not the process that generates the most complaints. Cost of error matters less than whether a review step is designed in.
Why do teams usually automate the wrong process first
The first automation project in most companies gets chosen by volume of complaints, not quality of fit. Someone in finance is fed up chasing invoice approvals. Someone in operations is tired of manually re-keying order data. The loudest process wins the budget, and six months later the team has a partially working automation that nobody trusts for the cases that actually matter.
This isn't a failure of ambition. It's a failure of selection criteria. Gut feel picks the process that's most annoying today. A scoring method picks the process most likely to succeed, generate confidence, and set a pattern the rest of the organisation will actually want to repeat.
That distinction matters more for the first workflow than any workflow that follows. The first automation sets the internal narrative about whether automation is trustworthy in your organisation. Pick badly and every subsequent proposal inherits the scepticism.
What is the six-factor scoring rubric for automation candidates
Bounded AI: Bounded AI means a system scoped to one task, gated by explicit approval steps, and logged so every decision can be traced back to its inputs, as opposed to an open-ended assistant asked to use judgement across an entire process.
Score every candidate workflow against these six factors before committing budget. None of them is disqualifying alone; it's the combination that separates a good first project from a slow-moving mistake.
| Factor | What to check | Strong candidate looks like |
|---|---|---|
| Volume | How often does this task happen per week or month? | High and steady, not sporadic or seasonal |
| Variance | How much does the input format or content vary? | Low variance, predictable structure |
| Decision complexity | How much judgement does a human currently apply? | Rule-based or narrowly bounded judgement |
| Cost of an error | What happens if the automation gets one wrong? | Recoverable, not silently catastrophic |
| Data availability | Is the input data structured, accessible and consistent? | Already digital, consistently formatted |
| Exception ownership | Who currently handles the edge cases? | A named person, not 'whoever notices' |
Score each factor on a simple scale, say one to five, and total them. This won't produce a perfect ranking, and it isn't meant to. It's meant to surface the candidates where your intuition and the data disagree, because that's where a bad decision is most likely to happen unchallenged.
Can a process with a high cost of error still be a good candidate
It's tempting to rule out anything with a high cost of error and automate only the low-stakes work. That's overly cautious, and it wastes the technology on tasks nobody was struggling with in the first place.
A process with a genuinely high cost of error, contract clause extraction, say, or supplier payment matching, can still be an excellent first candidate if the review step is designed in from the start rather than bolted on afterwards. We'd argue the deciding factor isn't the cost of error at all, it's whether a human reviews the output before it has consequences.
Teams weighing this trade-off often start by mapping candidate processes against document processing automation before scoping a pilot.
This is the core of bounded AI in practice. The system does the repetitive extraction or matching work. A person, with the context to catch a genuine anomaly, approves before anything downstream happens. That structure lets you automate meaningful, high-value work safely, rather than confining automation to tasks too trivial to matter.
What does a good candidate look like next to a bad one
Two composite examples, drawn from patterns we see repeatedly across mid-market operations teams, make the scoring method concrete.
Good candidate: supplier invoice data capture
- Volume: several hundred invoices a month, arriving steadily
- Variance: mostly PDF or structured email, from a known, fairly stable set of suppliers
- Decision complexity: matching invoice lines to purchase orders, a rule-based comparison
- Cost of error: a mismatch delays payment by a day rather than causing a financial loss
- Data availability: invoices are already digital, POs live in one system
- Exception ownership: accounts payable already owns the exception queue today
This scores well across every factor. It's high volume, predictable, and any mismatch routes to a human who was already doing that job manually. The automation removes repetitive work without removing judgement from the cases that need it.
Bad candidate: customer complaint triage
- Volume: moderate, but spikes unpredictably around product issues
- Variance: highly variable free text, tone and context differ hugely case to case
- Decision complexity: requires genuine judgement about severity, goodwill and precedent
- Cost of error: a wrongly triaged complaint can escalate publicly or damage a relationship
- Data availability: scattered across email, chat and call notes with no consistent structure
- Exception ownership: unclear, often whichever manager is free that day
Every factor here works against automation. High variance, high stakes, poor data, and no clear owner for the cases that need a human. This is exactly the kind of process that gets picked first because it's painful, and exactly the kind that produces a visible, embarrassing failure within weeks.
Why should you design the exception path before the happy path
Most automation projects are built around the happy path: the 80 or 90 percent of cases that are straightforward. The exception path, what happens to the remaining cases, gets designed last, or not at all, because it's less satisfying to build and harder to demo.
This ordering is backwards. The exception path is where trust in the system is either built or destroyed. If exceptions vanish into a queue nobody monitors, or get silently approved because nobody flagged them as different, the automation looks like it's working right up until it very publicly isn't.
- Name the person or role who owns exceptions before writing a single automation rule.
- Define what counts as an exception explicitly, rather than leaving it to whatever the model doesn't confidently classify.
- Set a service-level expectation for how quickly a flagged exception gets human attention.
- Log every exception with enough context that a pattern of similar exceptions gets noticed, not handled one at a time forever.
- Review the exception rate monthly for the first quarter; a rate that isn't falling suggests the automation's scope was drawn incorrectly.
A well-designed exception path also gives you an honest measure of whether the workflow was correctly scoped in the first place. If a third of cases are routing to exceptions six months in, the automation's boundary was drawn in the wrong place, and that's worth knowing early rather than discovering it in a compliance review.
How does scoring compare with letting a committee decide
Many organisations default to a steering committee to choose the first automation candidate, on the reasonable assumption that more perspectives produce a better decision. In practice, committees tend to converge on the process that's politically visible or personally painful to a senior stakeholder, which is a different thing from the process best suited to automation.
| Approach | Strength | Common failure mode |
|---|---|---|
| Committee decision | Builds buy-in, surfaces political and cross-team concerns | Converges on the loudest complaint rather than the best-fit process |
| Scored selection | Grounds the decision in factors that predict success, not visibility | Can miss legitimate strategic reasons to prioritise a lower-scoring process |
The practical answer is to use both, in sequence. Score the candidates first, so the committee is choosing between a shortlist of genuinely viable options rather than litigating from scratch. If your organisation is early in this conversation, an honest readiness check on your current data and process maturity is a useful precursor to either exercise.
Key takeaways
- Score candidates on volume, variance, decision complexity, cost of error, data availability and exception ownership rather than choosing the loudest complaint.
- A high cost of error doesn't disqualify a process if a human review step is designed in from the start.
- Bounded AI means task-scoped, approval-gated and audit-trailed, not an open-ended assistant applying general judgement.
- Design the exception path before the happy path; it's where trust in the automation is built or destroyed.
- A rising or flat exception rate after launch usually means the automation's scope was drawn incorrectly.
- Use scoring to shortlist candidates before a committee decides, rather than letting the committee choose from scratch.
Questions buyers ask
Which workflow should we automate first?
The best first workflow scores well on volume, low variance, bounded decision complexity, recoverable cost of error, available structured data, and a named owner for exceptions. It's rarely the process generating the most internal complaints, since those tend to be high variance and short on clean data.
What is bounded AI and why does it matter for automation?
Bounded AI means a system is scoped to one specific task, gated by an approval step, and logged so every output can be traced to its inputs. It matters because it lets you automate genuinely valuable, higher-stakes work safely, since a human reviews outcomes before they take effect, rather than restricting automation to trivial tasks.
Can a high-risk process ever be a good first automation candidate?
Yes, if a human review step is designed into the workflow from the outset rather than added afterwards. The cost of an error matters less than whether someone with the right context checks the output before it has consequences. Ruling out every high-stakes process wastes automation on work that wasn't a real problem.
How do we design the exception path for an automated workflow?
Name who owns exceptions before writing any automation rules, define explicitly what counts as an exception, set a response-time expectation, and log exceptions with enough context to spot patterns. Review the exception rate regularly in the first few months; a rate that isn't falling suggests the workflow's scope needs adjusting.
Can we score and select automation candidates ourselves without outside help?
Yes, the scoring rubric itself is simple enough to run internally with a cross-functional group who understand the candidate processes. Where teams more often need outside input is validating data availability claims and designing the exception path realistically, since internal estimates of both tend to be optimistic.
What does workflow automation typically cost to set up?
Cost depends heavily on scope: a narrowly bounded, single-task automation with clean input data costs far less than a broad process spanning multiple systems and exception types. Starting with a well-scored, well-scoped candidate keeps the first project's cost proportionate to the risk being taken on.
How is document processing automation different from general workflow automation?
Document processing automation specifically extracts and structures data from documents like invoices, contracts or forms, which is one common type of workflow candidate. General workflow automation is the broader discipline of deciding which process to automate and how, of which document processing is often the first and highest-scoring category.
One-page checklist
Automation Candidate Scorecard
Score any candidate workflow against these groups before committing budget to a first automation project.
Data & AI Lead, DataplexLabs
Works with operations, finance and machine learning teams on data collection, margin analysis and model-ready datasets.
Related reading
Find out where your margin is actually going
Bring one question about pricing, rebates, landed cost or a manual process. We come back with a focused view of what the data can prove.
One business-day response · NDA on request · No newsletter spam.