Getting started

How to Pick the First Process to Automate with AI

Most first automations are chosen by whoever complained loudest. Here is the selection method that survives contact with production: grade-ability first, volume second, and blast radius as the veto.

On this page
  1. Pick the process you can grade, not the one people complain about
  2. The four properties that make a process automatable
  3. The Adjudication Ladder ranks candidates by the cost of finding out
  4. Score the shortlist without falling for the loudest candidate
  5. Run the arithmetic on your own numbers before you commit
  6. Automating the handling and automating the decision are different projects
  7. Four traps that pick the process for you
  8. A two-week selection you can run without a consultant
  9. The vocabulary this decision needs

Pick the process you can grade, not the one people complain about

The short answer

Pick the process where you can tell, within one working day and without an argument between two experienced people, whether a given output was right. That single property decides whether the build ever leaves pilot stage. Volume, pain and executive interest are ranking factors after that, never before it.

The usual method is to ask which job the team hates most. That surfaces the process with the worst ergonomics, rarely the one with the best economics. The hated job is usually hated because it is ambiguous, owned by two departments at once, or full of exceptions that need somebody to phone a customer. Those three properties are what make a system hard to grade.

Grading is the constraint because everything downstream depends on it. An eval suite is a set of graded examples. A rollout decision is graded output against a graded baseline. Incident response is a graded sample showing when quality moved. Without a verdict on output four hundred, none of that exists and the project becomes a matter of opinion.

  • Grade firstRank candidates by how cheaply one output can be checked, before ranking them by case volume or by how much the work hurts.
  • 1 dayIf a verdict on an output takes longer than a working day to arrive, the feedback loop is too slow to carry a first build.
  • 3 to 6A useful shortlist is three to six named processes, each with a named owner. A department is not an owner.
  • 200 casesOur working minimum before an eval set means anything: two hundred past cases exported with inputs, decisions and outcomes attached.

The four properties that make a process automatable

Four properties matter: a machine-readable trail of past cases, a discrete verdict at the end of each case, enough repetition to build an eval set this month, and a blast radius you can contain. Most of a standard scoring sheet is decoration around these four.

A machine-readable trail

The process must already leave evidence a query can reach: resolution codes in a ticket queue, coded invoices in a ledger, disposition fields in a CRM. That trail is three assets at once. It is your golden dataset, your baseline, and the only honest way to estimate the exception rate before committing.

A discrete verdict

Each case must end in something checkable: a category, an amount, a routing destination, a field that either matches the source or does not. Processes ending in a paragraph somebody reads and feels good about can be automated, and cannot be defended when a stakeholder claims quality dropped in March.

Repetition above the eval threshold

The fixed cost of an automation barely moves with volume. Build, integration, eval suite and monitoring cost roughly the same at fifty cases a month as at five thousand. That is why a low-volume process with expensive handling time can beat a high-volume one that takes ninety seconds a case.

A blast radius you can contain

Ask what a wrong output touches before anyone notices, and how long you have to undo it. A misrouted internal ticket is recoverable in minutes. A wrong ledger code is recoverable until the period closes. An email to a customer is not recoverable at all. Reversal window is the number to write down.

PropertyWhat a pass looks likeHow to test it in an hourCost if it is missing
Machine-readable trailTwo hundred past cases exportable with input, decision and timestampTry the export yourself, today, and time itWeeks of manual labelling, discovered mid-project
Discrete verdictOne named role calls it right or wrong from output and sourceGive five past outputs to two experts separately, compare callsNo eval suite, so no safe way to change a prompt later
RepetitionA fifty case sample fairly represents the monthCount cases per month from the system, never from memoryFixed build cost never amortises
Contained blast radiusA wrong output is undone the same day, before a customer sees itAsk the owner to describe the worst case in one sentenceApproval theatre, a gate on every case, no saving
Four tests, each runnable before anybody writes code.

The Adjudication Ladder ranks candidates by the cost of finding out

Rank every candidate by what it costs to learn whether one output was right. The rung it lands on decides the shape of the build, the size of the review queue, and whether an eval suite is possible at all.

Framework

The Adjudication Ladder

Five rungs, ordered by the cost of a verdict. Place each candidate on one rung using the cheapest verdict available to you today, not the one you could build later.

01
Rung one: the system checks itself

The right answer is derivable from data you already hold. An extracted invoice total reconciles against the line items or it does not. A payload validates against the schema or it fails. Builds here run largely unattended, and every production run generates its own label, so the eval set grows on its own.

02
Rung two: a human verdict in under thirty seconds

A reviewer looks at the output beside the source and decides in one glance. Field extraction with the page image next to the values sits here, as does classification into a small set of categories. This is the right rung for a first build: the review queue quietly manufactures your golden dataset while paying for itself in caught errors.

03
Rung three: an expensive expert read

Deciding needs a specialist to read the source properly, and that specialist is the bottleneck you were trying to relieve. Contract clause summarisation sits here. Buildable, but the eval set becomes a project of its own with expert time booked in advance.

04
Rung four: the verdict arrives much later

You learn whether the output was right when a customer replies or a payment clears, which can be a quarter away. Lead scoring is the standard case. Build here only if you instrument the delayed outcome on day one and accept that the first honest reading is months out.

05
Rung five: no verdict exists

Nobody can say what right means without a debate: tone, creative quality, strategic judgement. These systems can be useful and can never be graded, so they cannot be defended when somebody asserts quality fell. Never make this the project that has to prove automation works.

The rule we work to: a first build sits on rung one or rung two. Later builds climb. If every candidate sits on rung four, the correct first project is not an automation, it is the instrumentation that will let you grade one.

The rung is a property of your instrumentation, not of the task

Processes move down the ladder. Lead qualification is rung four while the only recorded outcome is closed won. Add a one-click control in the sales view marking a lead as junk with a reason code, and within a month the same process behaves like rung two. That is usually smaller than the automation itself, and it makes every later build on that data cheaper.

Score the shortlist without falling for the loudest candidate

Score each candidate from evidence you pulled, not from what people said in the workshop. One file per candidate, filled with counts and names. A field nobody can fill is a finding about how ready that process is.

process-candidate.ymlyaml
# One file per candidate. Fill it from evidence, not from memory.
# A field you cannot fill is itself a finding: record who could not fill it.

id: ap-invoice-coding
name: Coding supplier invoices to the right ledger account
owner: whose week gets worse when it breaks, by name
sponsor: who signs        # not the same person
system_of_record: which system holds the truth today

volume:
  cases_last_90_days: 0        # counted from the system, never estimated
  peak_day: 0

handling_time:
  median_minutes: 0            # one case, competent person, timed
  p90_minutes: 0               # the tail is what the review queue fills with
  source: timed sample | system timestamps | estimate

adjudication:
  rung: 1 | 2 | 3 | 4 | 5      # the Adjudication Ladder
  who_decides: role, by name if there is only one
  time_to_verdict: minutes | hours | days | weeks
  ground_truth_available: yes | no

trail:
  past_cases_exportable: yes | no
  export_method: API | scheduled report | database read | screen only
  fields_present: [input, decision, decider, timestamp]
  export_tested_by: your name, on the day you tried it
  export_took_minutes: 0

exceptions:
  followed_documented_path_pct: 0   # measured on last month
  top_three_exceptions: []

blast_radius:
  writes_to: [systems a wrong output would touch]
  customer_visible: yes | no
  financially_material: yes | no
  reversal_window: how long you have to undo it
  worst_case: one sentence, from the owner, not a vendor

constraints:
  personal_data: yes | no
  regulated: name the regime, or none

baseline:
  metric: e.g. median hours from receipt to posted
  value: 0
  measured_on: YYYY-MM-DD
  agreed_by: owner name

veto:
  one_sentence: what would make you refuse this candidate outright

Five rules for turning those files into a decision, each learned by watching a scoring sheet produce the wrong answer.

  • Score volume as cases per month, not importance. Importance is an argument you can lose. Cases are a count.
  • Treat rungs four and five as a veto, not a low score. A weighted average lets a big volume number drown a process nobody can grade, and that is the project that stalls at month five.
  • Score containment by reversal window. Under an hour is green, same day is amber, irreversible is a veto until a human approval step is designed in.
  • If the trail only comes out via a screen scrape or a vendor ticket, add integration weeks rather than deducting a point. Access difficulty is a schedule problem, not a quality problem.
  • Refuse to collapse the sheet into one number. A composite score hides the veto column, and the veto column is the only part that protects you.

Run the arithmetic on your own numbers before you commit

Do the sums in public, with your numbers, before the project starts. Most first automations are justified by a saving that assumes every case goes straight through and nobody reviews anything. Both assumptions are wrong, and the gap is where the disappointment lives in month four.

First automation payback, with review time counted

Your numbers, not ours. Straight-through share is the proportion of cases completing with no human touch in the first six months, normally well below what a demo suggests. Model running cost is deliberately absent because provider pricing moves constantly: add it from your provider's price list, or work through token cost arithmetic first.

0Hours the process consumes today, per month
0Hours actually reclaimed, per month
0Value reclaimed per month
0Months to pay back the build

Review minutes bite hard: one minute of review on a six minute task gives back a sixth of the saving before anything goes wrong, and most plans budget zero. Straight-through share moves the result more than any other input, which is why it deserves a two week shadow run rather than an assumption.

Payback is the wrong reason to do the first one

The first automation is bought for the capability, not the saving. You are paying to find out what your data is really like, how long a scoped service account takes to approve, and whether anybody works a review queue. Save the payback argument for build three, when the platform work is already paid for.

Automating the handling and automating the decision are different projects

Decide which of the two you are buying before picking the process. They have different costs, failure modes and verification. Roughly half the work brought to us as an AI problem is a handling problem with one small decision buried in the middle.

Automate the handlingAutomate the decision
What it doesMoves, formats, routes and files work a human already decided aboutProduces the judgement, then a rule or a person accepts or rejects it
Typical failureA silent drop: one item is not moved and nobody notices for a weekA confident wrong answer that looks exactly like a right one
How you verifyReconciliation counts every run: items in equals items out plus items parkedA graded sample against known outcomes, on a schedule, forever
Blast radiusContainable with idempotent writes and a replay logSpreads, because a wrong decision gets acted on by the next system down
What it needsOften no model: a queue, a mapping table, retries and error handlingA model, retrieval, an eval suite, a review path and monitoring
Start hereFirst, most of the timeOnce the handling path is boring and instrumented

Handling is cheaper, verifiable by counting rather than by judgement, and it builds the pipes a decision model needs anyway. Do it first, leave the human decision inside the pipe as an explicit stop, then replace that stop with a model once you have three months of recorded decisions to grade against. Workflow automation and AI agent development are the two shapes.

Four traps that pick the process for you

Selection is usually decided by one of four forces, none of which has anything to do with fit. Name them out loud and they lose their power.

The loudest complaint is rarely the best candidate

The process generating the most complaints generates them for a reason, and the reason is usually ambiguity, disputed ownership, or a queue somebody else controls. Automating an ambiguous process adds a model to an argument, and the argument wins. If the pain is real, fix the ownership first.

  • The demo trap. A process is chosen because it looks good on a screen in a steering meeting. Screen-friendly and gradeable are unrelated properties.
  • The vendor-shaped trap. It is chosen because a tool you already pay for ships a template for it. Good reason to try the template, poor reason to make it the flagship build.
  • The volume mirage. A huge case count at two minutes a case saves less than a mid-volume process at forty. Multiply the two columns before anyone gets excited about the first.
  • The export trap. The pilot runs on a CSV, never needs a write path, and looks finished at week six. Then the real write path needs permissions, idempotency and an audit trail nobody scoped. That mistake explains most of why AI pilots fail.
The right first process is the one whose answers you can grade cheaply, whose mistakes you can undo before lunch, and whose owner will still be in the job in six months.

A two-week selection you can run without a consultant

Two weeks is enough. The deliverable is three candidates, one recommendation, and a written veto for the other two.

  1. Days one and two: list candidates from systems, not meetings2 days

    Pull case counts from the systems of record: tickets by queue, invoices by type, records by status transition. Anything you cannot count is not yet a candidate. Hunt repetition in data, not enthusiasm in a room.

  2. Days three and four: time the work honestly2 days

    Time ten cases each with two people doing the process, or pull timestamps where the system records them. Report median and ninetieth percentile separately. The tail is what the review queue fills with once the easy cases are automated away.

  3. Day five: place each candidate on the ladder1 day

    One question per candidate: who says whether this output was right, and how long do they take. Write the name and the duration. If the honest answer is a committee, that candidate drops regardless of how good its volume looked on Monday.

  4. Week two, days one to three: run the export test3 days

    For the top three, export two hundred past cases with inputs, decisions and outcomes. Do it yourself, and time it. An export needing a vendor ticket or a warehouse project is the most reliable predictor we know of an estimate doubling.

  5. Week two, days four and five: baseline, then write the veto2 days

    Measure the current state before anyone builds: cases per month, median and ninetieth percentile handling time, error rate as defined today. Then write the one sentence that would make you refuse each candidate. The one with an empty veto and a rung one or two verdict is your first build. Method in the baseline you must take before any automation.

The vocabulary this decision needs

Four terms that keep the conversation honest, because most selection arguments are two people using one word for different things.

Hand these to whoever builds it
0 of 8 done
Definitions
Adjudication cost
The time and expertise needed to decide whether one automated output was correct. It sets the price of every eval run, every incident investigation and every model change, which is why it belongs at the top of a selection sheet.
Straight-through rate
The share of cases that complete with no human touch. It decides whether an automation saves anything at all, and it is lower in month one than in the demo, because the demo used cases somebody chose.
Blast radius
The set of systems, records and people a wrong output reaches before somebody catches it. A one hour reversal window with no customer visibility is small, and small is what makes a first build safe to get wrong.
Golden dataset
A fixed set of real past cases with agreed correct outputs, used to score every version of the system against the same bar. It is assembled from the trail a process already leaves, which is why a process with no trail costs more than its case count suggests.

Questions readers ask next

Should the first automation be the process that costs the most?
No. The most expensive process is usually expensive because it is complex, disputed or expert-heavy, and all three make it hard to grade. Start somewhere cheap to check and safe to get wrong, then spend the capability you built there on the expensive one. It will still be expensive in six months, and by then you have an eval harness and a team that has worked a review queue.
How much volume does a process need before automating it is worth it?
There is no universal threshold, because the fixed cost of a build barely moves with volume while the saving scales linearly. Multiply monthly cases by minutes per case and compare against build cost using the calculator above. Fifty cases a month at forty minutes each beats five thousand at ninety seconds, even though the second looks better on a slide.
What if the only good candidate is owned by another team?
Then the first project is a negotiation, not a build. Cross-team automations fail at the review queue, because the team holding the queue did not choose the project and has no reason to work it. Either secure a named owner there with time allocated in their week, or pick a candidate inside your own perimeter.
Is a process with lots of exceptions a bad candidate?
Not necessarily, but it changes what you are building. A high exception rate means a system with a strong review queue and a clean escalation path rather than one running unattended. Measure the rate on last month's real cases first, then size the queue for that volume. The failure is designing for the happy path and finding the exception volume after go-live.
Can we skip selection and point an agent at everything?
You can, and the result is a system nobody can grade doing work nobody can audit. An agent with broad tool access across many processes has a blast radius equal to the union of all of them, and no baseline anywhere to compare against. Start with one process, one clear verdict and a small set of tools. Broad autonomy is earned on a narrow scope first.
Cite this

ChatGPTalker. "How to Pick the First Process to Automate with AI." chatgptalker.com, 2026-08-26. https://chatgptalker.com/guides/pick-first-process-to-automate/

Rather have it built than read about it?

Send the process you want automated. You get a scoped plan back, with the build shape, the stack and a realistic timeline.

Start a project