A procurement team asked a vendor a simple question last quarter: "The agent passed your eval in March. It is September. How do you know it still works?" The vendor sent back the same benchmark table from the original pitch deck. That answer used to be enough. It is not going to be enough for much longer, and the shift is happening faster than most agent builders have planned for.

The gap in that exchange is the whole story. An evaluation run at launch tells you the agent behaved on a specific model version, with a specific prompt, against a specific test set, on a specific day. Everything in that sentence changes after you ship. The model gets updated. Someone edits the system prompt to fix an unrelated bug. A tool API changes its response shape. Real users ask questions your test set never imagined. Continuous agent verification is the practice of assuming all of that will happen and building the machinery to catch it.

What "continuous" actually requires

The word gets used loosely, so pin it down. Continuous agent verification has three parts, and skipping any one of them turns the whole thing into theater.

Re-evaluation cadence. You run your regression suite on a schedule, not once. For a high-stakes agent that touches customer data or moves money, that means on every model version change, every prompt edit, every tool update, and on a fixed calendar interval regardless of whether anything visibly changed. The interval matters because slow drift does not announce itself.

Drift detection. Scheduled evals catch known failure modes. Drift detection catches the unknown ones by watching production traffic. You monitor the distribution of inputs (are users asking things your evals never modeled?), the distribution of outputs (is refusal rate climbing, are tool-call patterns shifting?), and the gap between the two. When the live distribution diverges from what you tested, that is a signal to run an unscheduled review, not to wait for the next calendar slot.

Independent attestation. This is the part builders resist and buyers increasingly demand. It is one thing to run the checks. It is another to prove to an outside party that they ran, that they passed, and that nobody quietly disabled the failing ones before the report generated. Attestation is a signed, tamper-evident record of the verification process. It is the difference between "trust us" and "here is the log."

Most teams have some version of the first item. Almost none have all three wired together, and that is exactly the gap the market is starting to price in.

Why the market is forcing this now

Two things changed in 2026 that moved verification from an engineering hygiene topic to a purchasing conversation.

The first is institutional. In September 2026 the Advanced AI Society joined the Linux Foundation and launched an Open Verification Ecosystem, an effort to standardize how agent behavior gets assessed by parties who are not the vendor. This matters because standards bodies are where "nice-to-have" turns into "checkbox on the RFP." Once a neutral group publishes a method, procurement teams can cite it, and vendors lose the ability to grade their own homework. Evaluation research groups like METR have spent years building rigorous methods for measuring what agents can actually do under adversarial conditions, and that methodology is now feeding into procurement expectations rather than staying in research papers.

The second is regulatory momentum. Bipartisan proposals in Congress have started pushing continuous verification and third-party evaluation for consequential AI systems. Regulation lags reality, but the direction of travel is clear, and enterprise legal teams do not wait for a bill to pass before adding protective clauses. They write for where the rules are going.

Underneath both is a plain risk signal. Roughly 65% of organizations reported an AI-related incident in 2026, with data exposure a common outcome. When two out of three buyers have already been burned, "show me your ongoing controls" stops being paranoid and starts being standard diligence. The identity problem compounds it: agents act with delegated authority, and as NIST has argued, agentic AI needs a strong identity foundation before you can even talk about verifying its behavior. You cannot attest to what an agent did if you cannot reliably say which agent did it.

Verification is a runtime SLO, not a launch gate

Here is the mental model shift that separates teams who will pass the new diligence from teams who will scramble. Stop thinking of verification as a gate the agent walks through once. Start thinking of it as a service level objective you commit to and measure forever.

An SLO has a target, a measurement window, and a consequence when you miss. Applied to an agent, that looks like: "The agent resolves the top 20 support intents correctly at or above 92%, measured weekly against a frozen eval set, and a drop below 88% triggers an incident review within 24 hours." That sentence is testable, it is contractible, and it survives a model update because the target does not move even when the underlying system does.

This framing also fixes the biggest failure mode in agent evals, which is that they rot. A launch-gate eval gets built once, celebrated, and abandoned. An SLO forces the eval set to stay alive because you report against it every cycle. When the number moves, someone has to explain why. That accountability is worth more than any single benchmark score.

The identity and access layer feeds this directly. Non-human identity governance is where a lot of agent risk actually lives, and as Christian Schneider has written on the non-human identity governance gap, agents accumulate credentials and permissions that no human is watching. Your runtime SLO should include access verification alongside behavioral verification: does the agent still hold only the permissions it needs, and can you prove when that last got checked?

What buyers should write into procurement clauses

If you are on the buying side, translate the SLO idea into contract language. Vague requirements produce vague answers. The clauses below give a vendor no room to hand you a stale benchmark.

Clause What it specifies Why it matters
Re-evaluation cadence The events and calendar interval that trigger a full eval run Prevents "we tested it at launch" from being the whole answer
Behavioral thresholds The metrics and pass/fail lines that define acceptable behavior Turns "it works" into a number you can dispute
Drift triggers Input/output distribution conditions that force an off-cycle review Catches slow degradation between scheduled runs
Attestation format Who signs the verification record and how it is delivered Moves you from self-reported to independently verifiable
Remediation window How fast a failing check must be fixed before penalty Makes the SLO enforceable instead of aspirational

Tie renewal or a payment tranche to sustained passing results rather than to the initial acceptance test. A vendor confident in their pipeline will accept this. A vendor who only ran one eval will negotiate hard against it, and that resistance is itself useful information. This is the same discipline you would apply to any SLA, and it belongs in the same section of the agreement as your other AI vendor contract clauses.

One caution on SOC 2. Buyers sometimes treat a SOC 2 Type II report as proof the agent behaves. It is not that. A SOC 2 Type II audit attests that security controls operated over a period, which covers change management, access, and monitoring. Those are the scaffolding around verification, not the behavioral verification itself. Ask for both, and do not let a compliance badge substitute for an eval report.

Building the attestation pipeline

For builders, the good news is that most of this is composable from parts you should already have. The work is connecting them and making the output trustworthy.

Start with the eval set and keep it honest. The single highest-value move is to make every production failure a standing test case, a practice worth its own discipline: every production failure should become an eval case. When the agent mishandles a refund request in the wild, that exact interaction becomes a frozen case in the suite. Over a few months this converts your incident history into a regression net that grows more valuable the more the agent gets used. Guidance on structuring the suite itself is covered in how to eval AI agents in 2026.

Then automate the runs. A scheduled job executes the suite on cadence and on trigger events, writes results to append-only storage, and fails loudly through your alerting when a threshold breaks. The append-only part is what makes attestation possible later. If results can be silently overwritten, no signature on them means anything.

For drift, sample production traffic and compare distributions rather than trying to grade every live interaction. You are looking for shape changes: a new cluster of inputs, a rising refusal rate, a tool that started returning errors the agent never handled. Frameworks from the security community help here. The OWASP work on LLM and agentic application risks catalogs the failure classes worth monitoring for, and the Cloud Security Alliance publishes governance guidance for putting monitoring into an auditable process. Neither is a product you buy; both are checklists you build against.

Finally, make attestation real. Sign the verification records, store them where the signing key is separate from the pipeline that generates them, and hand the buyer a report they can validate without trusting your dashboard. When a third-party evaluation ecosystem matures enough to accept these records directly, you will already have the format. This is the point where an open verification ecosystem for AI agents pays off for builders: shared formats mean you attest once and satisfy many buyers, instead of rebuilding a bespoke report for every procurement team.

Mapping this to a working system

Continuous verification touches evals, monitoring, identity, storage, and contracts at the same time, which is why teams stall on it. The pieces are individually simple and collectively easy to leave half-built.

OpenNash builds this layer into production agent deployments rather than bolting it on afterward. In practice that means defining the SLO and thresholds during design, wiring the incident-to-eval loop and the scheduled pipeline during build, and setting up signed attestation and drift alerting before the agent handles real traffic. The deliverable is owned by the client, documented, and integrated with existing CI/CD, so the verification record keeps generating after the engagement ends.

To be fair about the alternatives: if you run a low-stakes internal agent with no external buyers asking for proof, a platform's built-in eval dashboard is probably enough and custom attestation is overkill. If you are a vendor selling agents into regulated enterprises, or a buyer whose legal team is already redlining AI clauses, the full pipeline is worth building now while it is a differentiator rather than later when it is table stakes. Teams still deciding whether their agent even needs this can wait, but they should watch the RFP language in their market and move the month it changes.

If you are staring at a procurement questionnaire that now asks how you verify agent behavior over time, book a working session with OpenNash to map the SLO, thresholds, and attestation format your specific buyers will accept, and leave with the pipeline architecture ready to build.