What AI can automate

Can you automate a process that has a lot of exceptions and edge cases?

Yes, if the exceptions follow a pattern a system can learn to recognize. An agentic system reads each situation, decides what to do, and escalates the ones that need real judgment to a person instead of guessing. What it can't safely do is handle exceptions nobody has thought through yet; those still need a person until the pattern is clear.

By Precipitate · Updated 22 July 2026

A fixed script or rules engine handles the cases it was told about and breaks on the rest. It either throws an error, silently does the wrong thing, or sits there until someone rewrites the rules. An agentic system works differently. Given a goal and access to the real tools a business already uses, it reads what's actually in front of it, decides on a reasonable next step, acts, and checks whether that step worked. When a case doesn't match anything it recognizes, it can back off and hand the decision to a person instead of forcing an answer. That difference, reasoning about the specific case in front of it instead of matching it against a fixed list, is what makes exception-heavy work automatable at all.

Before building anything, we map the manual work as it actually happens, including the exceptions, and say plainly which of them a system can own and which it can't. Some edge cases repeat often enough that a system can learn to handle them: a missing field, a delayed response. Others are true one-offs that depend on context nobody wrote down: an exception someone made once for a specific reason, a judgment call with legal or financial weight attached. Those stay with a person. The system we build routes them there cleanly instead of guessing, and because we keep operating the system afterward, we can watch which exceptions keep recurring and widen what it handles over time.

This doesn't fit every process. If almost every case is different and there's no real pattern underneath the exceptions, automation won't help much, and it can make things worse by acting confidently on a case it doesn't actually understand. It also doesn't fit when the judgment involved lives entirely in one person's head and can't be described to a system even roughly. In those situations the honest move is to automate the repeatable parts around the edges (data gathering, status updates) and leave the actual decision with the person making it today.

Related questions

How do you know which exceptions to automate and which to leave to a person?

We look at whether the exception repeats. If the same case shows up often enough to describe how it should be handled, the system can own it. If it's a one-off that depends on context outside the process, it stays with a person, and the system's job is just to catch it and hand it off cleanly.

What happens when the system hits a case it's never seen before?

It stops and asks instead of guessing. We build the escalation path in from the start, so the system acts with confidence on what it recognizes and interrupts a person for the rest, rather than failing silently or doing something wrong.

Wondering what a system like this would own in your business? Tell us what the manual work is, and we will tell you honestly what a machine can take off your plate and what still needs a person.

Start a conversation →