Glossary term
Agent guardrails
Agent guardrails are the constraints placed on what an AI agent may do — from prompt instructions and output filters to runtime permission checks, approval gates, and audit logging — and they divide into the ones an agent can ignore and the ones it cannot.
Also known as AI guardrailsagent safety controlsagent constraints
In practice
Two families travel under one word. Advisory guardrails act on the model: system-prompt rules, tool descriptions written to discourage a call, output validators, refusal training. They move the probability of a bad action. Enforced guardrails act on the system: the identity a call executes under, row- and field-level permission checks, an approval that suspends the action until a person signs it, an audit record written whether or not anyone is watching. They move what is possible at all. Treating the two as interchangeable is how a deployment ships with "guardrails" that consist entirely of a paragraph in a prompt.
One question separates them: if the agent decided to do the forbidden thing, could it? Where the answer depends on the model cooperating, the guardrail is advisory. "Never modify closed opportunities" in a system prompt is a suggestion that a long context, an unusual phrasing, or a confident user can talk past; the same rule expressed as a field-level permission is a fact the caller cannot argue with. Advisory guardrails still earn their place — they lower the rate of attempts and produce better behaviour on ambiguous requests — but they should never be the only thing standing between an agent and a destructive write.
Neither family answers whether an action was the right one. A support agent that legitimately holds refund permission can issue a refund that should never have been issued, and an enforced guardrail will allow it precisely because the action was within permission. That gap is closed by evaluation, approval thresholds on high-impact actions, and designing for reversibility — not by more constraints on the tool surface. A guardrail inventory worth reviewing therefore records, for every rule, which family it belongs to and what observably happens when it is violated.
Where this term is used
Pages and articles that put this term to work.
Product pages
- Permissions & security Role-based, row-level, and field-level access control with a permission matrix editor and an audit log viewer, record sharing, and tenant isolation — enforced on people and AI agents alike.
- Approvals Multi-step approvals with user, role, team, and hierarchy resolution, a three-tab approvals inbox, escalation, and record locking — the same queue that gates AI-written structural changes before they ship.
- Trust center Review the ObjectOS trust model: data residency, self-hosted deployment, identity, permissions, approvals, audit logs, AI tool boundaries, and enterprise security review materials.
Articles
- Comment les agents AI travaillent dans les permissions d’entreprise Les entreprises n’ont pas besoin d’agents AI super-administrateurs. Elles ont besoin d’agents contrôlés, qui héritent des permissions, demandent validation pour les actions risquées et restent auditables.
- Quand votre agent IA supprime la base de production : le cas des garde-fous à l'exécution L'incident Replit rappelle une leçon structurelle : le rayon d'impact d'un agent ne doit pas dépendre d'un prompt. Permissions, approbations et audit doivent être imposés par le runtime.