Article · Implementation

How to Take an AI Pilot to Production

Arkatai 6 min

The jump that kills most AI projects is not in the technical phase but between the pilot that works and the system that operates. A demo with clean data and the happy path convinces a board in twenty minutes. The same system, set to carry real work week after week, runs into everything the demo sidestepped. Crossing that jump is not “scaling the pilot” but rebuilding four things the demo had simplified. Here are those four structural differences and the concrete path to cover them.

I will not go into why so many pilots fail —the design flaws that were baked in from the start, I analyze in why enterprise AI pilots fail—. This article assumes your pilot did not fail. It produced a result. The question is how you turn it into an operation. And for that you have to see what is genuinely different.

What actually changes between a demo and production

A demo proves a capability. An operation sustains a process. Those are different goals and they demand different things. The demo optimizes for showing the system can do the task under favorable conditions. Production optimizes for doing it well every day, at real volume, in your systems, with someone accountable for it. Between the two there are four concrete gaps, and each one is work, not configuration.

Exceptions stop being a footnote

In the demo, exceptions get parked: “we’ll look at that later”. In production, exceptions are the work. The order that arrives by email outside the catalog, the customer with special terms only one person knows, the field that means one thing in one system and another thing in another. That is not noise around the process, it is the process. An agent that only handles the standard case operates nothing. It hands back to humans exactly the part that was hard.

Crossing the jump starts by inventorying the real exceptions and deciding, one by one, whether the agent resolves them within its rules or escalates them with the context prepared. That inventory comes out of mapping the process seriously, which is where tacit knowledge is made explicit. I develop it in which processes to automate with AI and in the thesis of the operating model as code. Without that work, every new exception is a stop.

AGENTPERSONcase 1case 2case 3resolved ✓decisionreal exceptionwith the context prepared
In production the agent executes the patterned cases; the real exception crosses into the human lane with the context prepared, instead of being parked for later.

Write integration replaces read-only

Many pilots read data and propose, but almost none write. And that is half the distance to production. Reading an ERP to suggest is a low-risk integration. Letting the agent write to that ERP, issue a document or close a case is another category: it demands permissions per action, approvals for anything with external consequences, and a clear separation between what the agent decides on its own and what it only proposes. The demo avoids that complexity. The operation lives in it.

This is the work of deploying with controls, not of “connecting an API”. How those permissions are designed —what it may write, under what conditions, with what approval— is detailed in AI agent permissions and controls, within the framework of AI agent governance. A pilot that never wrote has not tested the hard part.

Evaluation replaces impression

In the demo, the success criterion is that it impresses. In production, the criterion is that it passes an evaluation. Those are opposites. Impression is built from the cases that go well. Evaluation is built on purpose from the cases that could go wrong. Before it gets work with consequences, an agent needs a set of test cases with known answers, a quality threshold below which it does not pass, and a systematic review of its failures.

Without that apparatus, “the pilot went well” is a feeling, not a fact, and no serious board should approve production on a feeling. Building that measurement discipline sits inside the broader risk framework in AI agent governance. Assembling it is often half the effort of crossing the jump, and it is the half the demo skipped.

Happy path✓ reaches productionFrequent case✓ reaches productionException Anot yetEdge casenot yetagreed thresholdevaluation, not impression
Impression is built from the cases that go well; evaluation is built from the ones that could go wrong and sets a threshold below which the system does not pass.

An owner appears who answers for the system

In the pilot, if something goes wrong, nothing happens, because it was a test. In production, if something goes wrong, someone answers. That change in accountability is structural, not administrative. Production means there is a person in the organization —the process owner— who answers for what the agent does the way they would answer for a team: setting its limits, reviewing its escalations, deciding when to widen its autonomy and when to stop it.

If the pilot was run by innovation or a committee and nobody in operations takes it on when it ends, there is no possible production. There is an orphaned experiment. That precondition, along with accessible data and a documented process, I review in prepare your company for agents.

The path to cross the jump

With the four gaps identified, the path is orderly, even if it is not short:

  1. Replay the pilot against production data. A representative sample, with known exceptions included on purpose, not a friendly subset. This is where you discover the undocumented rules before a customer discovers them for you.
  2. Close the exceptions. Each one: resolved within the agent’s rules or escalated with context. The ones left undecided will be stops in production.
  3. Add writing with controls. Permissions per action, approvals for anything that leaves the company, and a trace of every decision from day one.
  4. Build the evaluation and set the threshold. The system does not reach production by consensus, but by clearing the threshold and having a failure-review plan.
  5. Assign the owner and start supervised. Heavy human review at first. Loosen control only where the data proves reliability.
  6. Treat the result as an operation, not a project. A system in production is maintained: models, processes and evaluations change, and whoever does not absorb that cycle watches the system degrade in months.

That maintenance cycle is the one I describe on the method page, and it fits into the full guide on how to implement AI agents. If your company does not have a team to sustain that cycle, a managed AI operation shifts the maintenance to whoever operates the system. The full operating ground, with more examples, is in AI agents in operations, and the framing of what an agent is, in the pillar on AI agents for business.

Frequently Asked Questions

Why did my AI pilot work but not reach production?

Almost always because the pilot tested the capability, not the operation. It worked with clean data, the happy path and without writing to your systems. Production demands handling exceptions, writing with permissions, passing an evaluation and having an owner. Those four pieces do not “scale” from the demo. They are built.

What is the key difference between a pilot and production?

A pilot proves the system can do the task. Production sustains that it does it well every day, at real volume, in your systems and under a person’s accountability. The difference comes down to closed exceptions, write integration with controls, evaluation with a threshold, and an owner who answers for it.

What do I do first to move from pilot to production?

Replay the pilot against a representative sample of real data, with exceptions included on purpose. Before touching permissions or evaluation, you need to know which undocumented rules appear when the system sees the real operation. That finding orders all the rest of the work.

How long does it take to cross the jump to production?

It depends on how many exceptions the process has and how prepared the house is, but the bulk of the time goes into closing exceptions and building the evaluation, not into the model. A pilot with a documented process and accessible data crosses in weeks or a few months. One without that may never cross.