Out-Of-Distribution Checks – How Human Intelligence Stabilises Agentic Workflows A blog post on autonomous agent reliability argues that fully autonomous agentic workflows are "extremely improbable" to be reliable, citing arXiv paper 2510.27630 showing reliability tends to stabilise when humans are in the loop but not when agents work entirely autonomously. The author's STAAR model defines step reliability as R = 1 – (1 – C)(1 – P), where C is the probability of correct inference and P the probability of catching errors before they propagate, and notes that since P is always less than 1, out-of-distribution errors remain, causing R^N to decay over N steps. Using an example of an agent with R = 0.99 and a shippable threshold of Q = 0.95, the post asks how many steps the agent can take before reliability falls below threshold and how often a human must check for unanticipated errors, adding that LLMs do not learn and WHILE loops definitely do not learn. Back to my “Special Theory of Autonomous Agent Reliability” STAAR . The reliability of a step a model interaction in an agentic workflow: R = 1 – 1 – C 1 – P Where C is the probability of correct inference, and P is the probability of catching errors before they propagate and compound. If P represents the distribution of anticipated errors – what we test for, what we lint for, what the model knows to look for etc – then, by definition, 1 – P represents out-of-distribution errors – we didn’t write a test for that, the linter doesn’t check for that, the model wasn’t trained on that etc. P is always < 1, and there will always be errors outside the distribution of our automated checks – be they deterministic or probabilistic. So, without checking for out-of-distribution errors, R