Every term in this hub.
This hub collects the reliability terms in the Prefactor glossary. The deployment group covers how new agent versions reach production without betting everything on them: canary deployments, blue-green releases, and environment promotion. If your agents currently ship by editing a prompt in production, this group is the argument for stopping.
The versioning group covers knowing what is actually running: version pinning, immutable versions, and the lifecycle states between pending and retired. It sounds bureaucratic until the first incident review where nobody can say which prompt produced the bad output. The failure group covers what happens when things break anyway: retries, fallbacks, timeouts, circuit breakers, and recovery patterns adapted for systems whose failures are often probabilistic rather than crashes.
Drift gets its own group because it is the failure mode unique to this field: an agent that degrades without any deploy, because a model updated upstream or the input distribution moved underneath it. Drift detection is where reliability and evaluation meet, and the entries link across accordingly.
Terms are grouped below in lifecycle order: deployment first, then versioning, then failure and recovery, then drift and degradation. Each entry links to its full definition.
Deployment
Versioning
Failure & recovery
Drift & degradation
More agent reliability & deployment terms
Common questions.
What makes agent reliability different from normal software reliability?
Agent failures are often probabilistic rather than crashes: an agent can degrade without any deploy, because a model updated upstream or input data shifted. Reliability practice adds drift detection to the usual deployment discipline.
What is a canary deployment for agents?
Routing a small, growing share of production traffic to a new agent version while watching quality and error metrics, so a bad release burns a fraction of users instead of all of them.