What is worth automating?
Repetitive, structured, deadline-driven work that is cheap to verify. If checking costs as much as doing, you moved the work rather than removed it.
Guide · AI
Most AI automation projects fail on selection, not technology. The tasks worth automating share a specific shape, and the ones that burn money share a different one.
A task is a good automation candidate when it is repetitive, structured, deadline-driven, and cheap to verify. That last one carries most of the weight: if checking the output takes as long as producing it, automation has moved the work rather than removed it.
| Automate | Keep human |
|---|---|
| Drafting a first version | Sending anything that commits you |
| Extracting fields from documents | Deciding what the fields mean for the relationship |
| Classifying and routing inbound messages | Handling the angry one |
| Chasing missing paperwork on a schedule | Negotiating price |
| Summarising a long thread | Making the call the thread was about |
| Monitoring dates and flagging expiry | Deciding what to do when something expires |
The architecture that consistently works is two-tier. A cheap local model does the volume — drafting, tagging, extraction, overnight batches — at zero marginal cost. A frontier model does the judgement: the final pass, the hard reasoning, anything customer-facing. Between them sits the piece most people skip.
Generated output at volume is worthless without an automated check, because the failure rate is never zero and one bad artefact reaching a customer costs more than the whole batch saved. A gate is a set of hard invariants, checked in code, that quarantines anything failing them.
Everything failing the gate goes to a quarantine folder rather than out the door. Volume without a gate is not throughput, it is liability at scale.
Less than people expect on tokens and more than they expect on plumbing. A local model on hardware you already own is free per call, so the recurring cost of a high-volume drafting pipeline can be genuinely near zero. The real expense is the boring part: connecting the data sources, defining the invariants, handling the exceptions, and maintaining it when a format changes upstream.
Which is the honest summary of this whole field right now — the model is the cheap part.
A worked example of all of this in production is FreightDesk AI: local model drafts overnight, an automated audit quarantines anything failing its checks, a human sees only exceptions. The generation half is covered in the local LLM guide, and the retrieval half in the RAG guide.
FAQ
Repetitive, structured, deadline-driven work that is cheap to verify. If checking costs as much as doing, you moved the work rather than removed it.
Anything that commits you: final sends, price negotiation, complaints, and deciding what to do when a flag fires.
Cheap local model for volume drafting and extraction, frontier model for judgement and anything customer-facing, gate in between.
Failure rate is never zero, and one bad artefact costs more than the batch saved. Volume without a gate is liability at scale.
Instrument, write the gate first, run in shadow mode, ship one workflow end to end, keep a human at the irreversible step.
Little on inference, a lot on plumbing — integration, invariants, exceptions, maintenance. The model is the cheap part.