Environment sensitivity
Production actions carry a +20 risk modifier. Staging and development are scored lower, enabling faster iteration where risk is bounded.
Use Cases / DevOps
Production deployments, migrations, and rollbacks execute only with signed authority decisions. Intended evaluates environment, blast radius, and reversibility before any AI agent touches production.
CI/CD pipelines already automate deployment. AI agents now decide what to deploy and when. Without runtime authority enforcement, a confident model can trigger a schema migration at 2 AM with no human in the loop. Intended enforces the boundary between AI reasoning and production execution.
# AI agent requests production deployment
POST /execute
{
"action": "deployment.trigger",
"target": "service-payments",
"environment": "production",
"adapter": "github-actions",
"context": {
"change_scope": "schema_migration",
"model_confidence": 0.92
}
}
# Intended evaluates 8 risk factors:
# → base_action_risk: 0.55 (deployment)
# → environment: production (+0.20)
# → blast_radius: single service
# → reversibility: schema migration (low)
# → time_of_day: business hours (neutral)
# → actor_trust: 0.85 (established agent)
#
# Risk score: 68 → ESCALATED
# → Routed to on-call for approvalProduction actions carry a +20 risk modifier. Staging and development are scored lower, enabling faster iteration where risk is bounded.
Single-service changes score lower than multi-service or org-wide changes. The Authority Engine scales controls proportionally to impact scope.
Reversible actions (config changes, feature flags) score lower than irreversible actions (schema migrations, data deletions). Controls match consequence.
deployment.trigger → staging
Non-production, reversible, trusted agent. Token issued with 300s TTL.
config.update → production
Below escalation threshold. Reversible change with bounded scope.
database.migrate → production
Low reversibility + production environment. Routed to on-call approver.
deployment.rollback → production (3 services)
High blast radius across multiple services. Requires human confirmation.
infra.destroy → production cluster
Irreversible, org-wide blast radius. Exceeds deny threshold.
Workflow dispatch with token-verified execution.
PR creation with authority-scoped changes.
Issue creation and commenting under authority.
Incident and change operations with audit trail.
Pod, deployment, and namespace operations.
Plan and apply with authority-gated execution.
Cloud resource management under authority.
Build any adapter in < 200 lines with the Connector SDK.