Every PE operating partner already runs the meeting I am about to describe. It is the weekly portfolio company check-in: look at what happened, dig into the two or three things that look off, decide what changes, move on. Nobody would run a portfolio company on quarterly board meetings alone. Yet most teams deploy an AI workflow, watch it closely for two weeks, and then check on it roughly never - until an invoice gets misrouted to the wrong fund entity and suddenly everyone wants a post-mortem.

The fix is not more monitoring dashboards. It is a standing 45-minute weekly review with a fixed agenda: sample cases, read traces, update evals, patch sources, and make one explicit decision about approval gates. This post is the full agenda, plus the mechanism that makes weekly reviews compound instead of just consuming calendar time.

Drift Is Boring, and That Is Why It Wins

When people say "AI drift" they usually picture the model getting worse. That almost never happens. What actually drifts is everything around the model:

  • Inputs change. A portfolio company switches billing systems and invoice PDFs now have a different layout. Your extraction workflow still runs, still returns confident answers, and is now wrong 8% of the time instead of 1%.
  • Source documents rot. The workflow answers questions from a policy doc that finance updated three weeks ago. The retrieval index still serves the old version.
  • Upstream APIs shift. A CRM field gets renamed, a helpdesk adds a new ticket category, an ERP export adds a column. Tools that pattern-matched on the old shape start failing quietly or, worse, succeeding on the wrong data.
  • Usage expands. Operators discover the workflow handles a case it was never designed for, start feeding it that case, and nobody updated the evals to cover it.

None of these produce an error. They produce plausible outputs that are slightly wrong, which is the most expensive failure mode in existence because it accumulates silently. The Google SRE book's chapter on monitoring makes the point that mature systems fail through slow degradation more often than outages, and its answer is the same one that applies here: humans must periodically look at the system with fresh questions, because alerting only catches failure modes you predicted in advance.

For AI workflows, the periodic human look is the edge-case review. Anyshift's analysis of PE's AI transition problem found that mid-market firms mostly fail at AI not in the pilot phase but in the "nobody owns it now" phase six months later. The weekly review is what ownership looks like as a calendar entry.

The 45-Minute Agenda, Minute by Minute

The review works because it is boring and fixed. Same agenda, same artifacts, every week. Here is the split we run:

Minutes Activity Output
0-5 Metrics glance: volume, intervention rate, escalation rate vs last 4 weeks Flag anomalies for sampling
5-20 Review 8-12 sampled cases, reading full traces List of surprises, tagged by cause
20-30 Convert surprises into eval cases New eval entries committed
30-40 Patch queue: source doc updates, prompt fixes, tool changes Tickets or direct fixes
40-45 Gate decision: loosen, hold, or tighten one approval gate One written decision with rationale

Three roles attend: the workflow owner, one operator who actually handles the workflow's escalations, and someone who can ship changes. That last one matters. A review that produces a list of findings for "the eng team to look at later" is a status meeting wearing a costume. The point is that at least half the patches ship the same day.

How to sample. Do not review only failures. Pull a stratified sample: two or three cases the workflow escalated, two or three where a human edited the output, two or three flagged by automated checks, and - this is the part teams skip - three or four cases marked fully successful, chosen at random. The near-miss successes are where drift appears first. A workflow that produced the right answer through an increasingly fragile reasoning path will show you the fragility in its trace weeks before it shows you a wrong answer.

How to read a trace. You are not re-verifying the output; automated checks did that. You are asking three questions per case. Did the workflow retrieve the right context, or did it get lucky? Did each tool call do what the reasoning step intended? Would I have made the same escalation decision? Ten minutes of trace reading per week builds the pattern library that makes your team good at this. Hamel Husain's argument in Your AI Product Needs Evals is that error analysis - actually looking at individual cases - is the highest-leverage activity in AI development, and most teams underinvest in it by an order of magnitude. The weekly review makes that investment structural instead of heroic.

From Edge Case to Eval: The Ratchet

Here is the mechanism that separates teams whose workflows improve from teams whose workflows wobble: every edge case found in review becomes a permanent eval case before the meeting ends.

An eval case is small. It is the input that surprised you, plus an assertion about what the workflow should do with it. The invoice with the new PDF layout becomes a fixture. The question the old policy doc answered wrong becomes a retrieval test. The ticket category the router misclassified becomes a labeled example. Ten minutes a week, eight to twelve cases reviewed, maybe three or four become evals. After six months you have 80-100 eval cases that are not synthetic - each one is a real thing that actually happened to your actual workflow.

This is the ratchet, and it is what makes improvement safe. When someone wants to change the prompt, swap the model, or add a tool, the change must pass the accumulated suite first. The workflow can gain behavior every week, but it cannot silently lose behavior it already demonstrated. Without the ratchet, every prompt "improvement" is a coin flip against regressions you have no way to detect. With it, drift in the system's behavior becomes structurally impossible even while everything around it keeps changing.

The counter-intuitive part: this means the weekly review gets more valuable over time, not less. Teams assume reviews are training wheels to remove once the workflow is stable. Backwards. A mature workflow with 100 accumulated evals and a tight review loop is precisely the one you can change aggressively, because the safety net is dense. The workflows you should be scared to touch are the "stable" ones nobody has reviewed since March.

Same session, patch the sources. If the review found a wrong answer caused by a stale document, the fix is not a prompt tweak - it is updating the document and re-indexing. In our experience roughly half of weekly findings trace to source content, not workflow logic, which matches what Third Bridge sees in AI due diligence workflows: output quality tracks input curation far more tightly than model choice.

The Gate Decision: Loosen, Hold, or Tighten

The last five minutes are the reason executives should care about this meeting. Every AI workflow launches with human approval gates - the writeback needs sign-off, the outbound email sits in a draft folder, the classification routes to a queue for confirmation. Gates are the right launch posture. They are also expensive, and the entire economic case for the workflow depends on eventually opening most of them.

Most teams handle gates in one of two bad ways: leave everything gated forever (safe, and the ROI never materializes), or open gates when someone senior gets impatient (the ROI materializes right up until the incident). The weekly review replaces both with an evidence-based decision, made explicitly, once a week, for one gate at a time:

  • Loosen a gate when its case category has run 4-6 consecutive weeks with no interventions, the eval suite covers its known failure modes, and the operator in the room agrees the approvals have become rubber stamps. Open one category, not the whole gate, and keep it in the weekly sample afterward.
  • Hold when intervention rates are low but the eval coverage is thin, or when upstream changes are coming (system migration at a portfolio company, quarter-end volume spike).
  • Tighten when the review surfaces a new failure category, even if aggregate metrics look fine. Tightening after review evidence and before an incident is the cheapest risk decision you will ever make.

Write the decision down with its rationale. A one-line log entry per week gives you an audit trail that answers, a year later, "why does this workflow send emails without approval?" with something better than "it seemed fine at the time." For PE firms specifically, that trail matters at exit: BlueFlame's survey of PE AI use cases notes that buyers increasingly diligence the operational controls around AI systems, not just the systems themselves. A gate-decision log is exactly the artifact that diligence wants to see.

What This Buys a Mid-Market PE Portfolio

The reason to formalize this at the fund level rather than leaving it to each portfolio company: the review cadence is the transferable asset. Models change, vendors change, workflows get rebuilt. The operating muscle of sample-trace-eval-patch-decide transfers across all of them, the same way a monthly close process transfers across accounting systems.

Insight Partners' analysis of AI adoption patterns found that the firms compounding gains from AI are distinguished by operating rhythm, not tool selection - the winners institutionalized feedback loops while everyone else ran perpetual pilots. Estimates in the mid-market PE space put the gap at 200-400 basis points of net IRR for firms that operationalize AI early versus those that stall. Whatever you think of the precision of that number, the direction is hard to argue with: a workflow that improves 2% a week for a year and one that quietly degrades 1% a week for a year end up in different businesses.

The math on the meeting itself is not close. Three people, 45 minutes, weekly: call it 120 person-hours a year per workflow. One prevented incident of the misrouted-invoice variety pays for the year. The steady loosening of approval gates, which is where the actual labor savings live, does not happen at all without it. If you want the broader operating model this review slots into - ownership, on-call, escalation paths, and reporting - we covered that in managed AI workflow operations.

How OpenNash Can Help

OpenNash builds production AI workflows, and the weekly edge-case review is part of what we hand over, not an add-on. During the design phase we define the approval gates and the initial eval suite before deployment, so week one's review has real artifacts to work with. During build, we instrument traces so a reviewer can answer the three trace questions in under a minute per case. At handoff, your team owns the review: the agenda, the eval suite, the gate-decision log, and the tooling all transfer with documentation.

If your firm or a portfolio company has an AI workflow that launched well and has since gone quiet - no incidents, but also no one looking - that is usually the drift window. Book a call and we will map this review cadence to your specific workflow, including what to sample first and which gate is closest to loosening.