AN Alpesh Nakrani
BlogBooksPraiseAbout Work with me →
Book overview
Chapter 5 / Field Manuals

Operating Cadence

Ownership, review cycles, release gates, and the rituals that keep quality honest.

Failure Modes

The main risk is debugging from anecdotes after customer trust is already damaged. This risk is rarely dramatic at first. It appears as a confident answer with weak support, a slow workflow users abandon, a missing handoff, or a metric that improves while trust declines.

Write failure modes before launch. Name the input that breaks the system, the output that should never pass, the source that cannot be trusted, and the action that requires approval.

Early Signals

Early signals include unusual retries, rising handoffs, source gaps, user corrections, longer review time, and disagreement between reviewers. None of these signals proves the system is broken. Together they show where to inspect.

The important discipline is to connect signals to owners. A signal without an owner becomes background noise. An owner without a signal becomes a person guessing under pressure.

Recovery

Recovery starts with reproduction. Preserve enough context to replay the request, including inputs, source material, prompts, model choice, tool calls, and output. Without replay, every incident becomes folklore.

After reproduction, choose the smallest fix that addresses the class of failure. A prompt edit may fix wording. A retrieval change may fix evidence. A policy change may fix permission. A scope reduction may be the most honest fix.

When To Stop

A mature team knows when not to automate. If the evidence is unavailable, the cost of error is high, or the policy is unsettled, the right answer may be to stop and route the work elsewhere.

Stopping is not failure. It is a product decision. The user trusts the system more when its limits are clear than when it pretends certainty where none exists.

Research Lens

The research base for Observability for AI Systems matters because observability for model systems sits between capability and consequence. Papers, benchmarks, and risk frameworks can show what is possible, but production teams still have to translate that evidence into decisions. This chapter treats research as a constraint on judgment, not as decoration.

The most useful research habit is to separate mechanism from outcome. A paper can show that a method improves a benchmark. It does not prove that the same method improves time to reproduce a failure in your product. That gap is where evaluation, sampling, and release discipline belong.

For this chapter, read external sources as pressure tests. If a source describes a known weakness, ask whether your system can observe that weakness. If a source describes a benchmark gain, ask whether your users send the same kind of work. If a source describes a risk, ask who owns it after launch.

Recovery method

Start with a written task statement. It should name the user, the input, the expected output, the source of truth, and the action that follows. If any of those pieces are missing, observability for model systems is not ready for broad automation because the team cannot tell whether the result is good enough.

Next, define the control surface. For this topic, the control surface includes trace records, prompt snapshots, retrieval evidence, replay, and release markers. Each control should have a reason to exist and a way to be tested. A control that cannot be tested becomes process theater. A control that can be tested becomes part of the operating system.

Finally, decide what the system does when the answer is not ready. The mature options are ask for more context, return a partial answer with evidence, route to a person, or stop. The immature option is to keep generating until the output sounds confident.

Risk evidence

Evidence should be collected at the same grain as the decision. If the decision is whether an incident is a code defect, data defect, model change, or policy gap, the review set should contain examples that force that decision. A broad score is useful only after the team has inspected the cases that carry the most cost.

The strongest evidence combines observed user work, known edge cases, recent incidents, and synthetic pressure tests. Synthetic examples are useful when they fill a known gap. They are dangerous when they replace the real distribution the system must serve.

A good review record includes the input, the relevant context, the output, the expected answer, the judgment, and the fix. Without that record, quality work becomes memory work. With it, the team can see whether the system is learning, drifting, or merely changing shape.

Implementation Notes

Implementation should begin with the smallest useful workflow. The first version should be narrow enough that the team can replay every important failure. If replay is not possible, the system is not observable enough for serious use.

The second version should add volume without changing the promise. This is where time to reproduce a failure should be watched closely. If the metric improves while support tickets, corrections, or handoffs rise, the measurement is missing something important.

The third version can expand scope only after the team knows which failures are acceptable, which failures require escalation, and which failures require rollback. Expansion without that knowledge creates a system that appears productive while quietly moving risk to the customer.

Decision Review

At the end of the chapter, the team should be able to answer four questions. What promise are we making? What evidence supports it? What happens when the promise fails? Who has authority to change the promise? These questions are simple, but they expose most weak deployments.

The answer should not live only in a meeting note. It should appear in the evaluation suite, the release checklist, the incident process, and the product experience. Users do not need to see the internal machinery, but they do need to feel its discipline.

Observability for AI Systems is ultimately about replacing vague confidence with accountable practice. The point is not to slow teams down. The point is to make speed repeatable, explainable, and safe enough to build a business on.

Operating table

Operating Cadence operating table

AreaWhat to inspectDecision evidence
FailureDebugging from anecdotes after customer trust is already damagedReplay and classify the incident
SignalRetries, corrections, handoffs, source gaps, and reviewer disagreement.time to reproduce a failure
RecoveryFix the smallest layer that explains the class of failure.whether an incident is a code defect, data defect, model change, or policy gap
Chapter notes

What to carry forward

  • Assign recurring work to named owners.
  • Use time to reproduce a failure as the anchor metric.
  • Make this decision explicit: Whether an incident is a code defect, data defect, model change, or policy gap.
  • Make every important answer replayable before launch.
  • Write failure modes before users find them.
  • Recovery requires replay, ownership, and the smallest useful fix.
Share