Repeated work, rediscovered every run
An LLM with tool access can already do a lot. What it doesn't come with is your order of operations: which calls, in what sequence, under which constraints. For a one-off task that's fine. The agentic loop investigates, tries things, and usually lands somewhere reasonable. Repeated operational work is different. If the agent has to rediscover the plan by trial and error on every run, you get a different path each time, and some of those paths skip steps you care about.
We kept hitting this wall in our own work. Wire an agent up to every tool it needs, point it at a real workflow, and it will do a job—just not always yours. It skips the approval step your compliance team insists on. It refunds a customer who was outside the policy window. It reaches a plausible-looking outcome by a path nobody signed off on, and since nobody was watching, nobody caught it. The fix, we suspected, was already sitting in most companies: the Standard Operating Procedure. The open question was how to get the right SOP into the agent's context at the right moment with no human choosing it, and whether the delivery mechanism (a skill, a tool, or an MCP prompt) changes the outcome.
So we tested it. Three benchmarks, deterministic oracles, five arms from no SOP at all to an auto-discovered SOP with externalized run-tracking, all on claude-haiku-4-5. The short version: giving the agent the SOP raises single-turn task success by +0.35 (95% CI [+0.26, +0.45], p<0.001) and pushes multi-turn procedure conformance from ~50–59% up to ~90%. The delivery channel (skill in context versus tool retrieval) is a wash. And bolting heavyweight run-tracking on top buys nothing except a 2–4× tool-call bill. The rest of this post is the evidence: how we ran it, what supplying the SOP buys, two negative results that save you money, and how far to trust each claim.
One thing up front, because it shapes how you should read the rest: this study was sized for budget and compute, not for statistical power. The single-turn success gain and the conformance jump on τ² are solid. The multi-turn magnitudes are directional. We'll flag which is which as we go, and there's a whole section on it before the numbers.
