Use Case 1: Business Hours Execution Policy
A company wants to restrict automation runs to business hours (weekdays 09:00–17:00). All non-critical tasks should be blocked outside these hours to avoid unintended changes during off-hours.Purpose
- Prevent accidental production changes at night or on weekends
- Reduce risk from unattended automation
- Enforce consistent operational windows across all agents and teams
- Provide clear violation messages when a run is attempted outside allowed hours
Policy Logic (Rego)
The policy checks current time and day provided in the input and only allows runs during the defined window.business_hours.rego.
Create the Policy (CLI)
Attach Policy
Attach it to the relevant Environment(s) and/or Teams where execution should be restricted. (Attachment follows the standard mechanism: policies can be associated with Environments, Teams, and Agents.)Validate Before Enabling (CLI)
Test the policy using different timestamps. Allowed example:true
Denied example:
"Execution allowed only Monday–Friday, 09:00–17:00"
Runtime Behavior
When any task runs during off-hours:- The evaluator loads the policy
- The run is blocked
- The violation message appears in the task log
- No action is executed
Example Usage Scenarios
- A user tries to deploy a service at midnight → blocked
- A workflow tries to modify infrastructure on a Saturday → blocked
- A read-only diagnostic runs at 14:00 on Tuesday → allowed
Use Case 2: Required Labels for Governance and Cost Allocation
The organization requires that every task include metadata labels:owner, service, and purpose, to maintain traceability and cost allocation rules. Tasks missing these labels must be rejected.
Purpose
- Ensure all automation runs are traceable
- Enforce mandatory metadata for audit and billing
- Apply uniform governance across all teams
- Stop runs that omit required labels
Policy Logic (Rego)
required_labels.rego.
Create the Policy (CLI)
Attach Policy
Associate it with Environments or Teams where metadata enforcement is required.Validate Policy Behavior (CLI)
Allowed input (all labels present):true
Denied input (missing label):
"Missing required label: purpose"
Runtime Behavior
When a workflow or tool call runs:- The evaluator loads the task’s metadata
- If any required label is missing, the step is blocked
- The violation explicitly states which label is missing
Example Usage Scenarios
- Developer launches a build without
purpose→ blocked - Automated cost-allocation job submits metadata with all fields → allowed
- Platform engineer runs a workflow missing
service→ blocked - Team triggers an audit job with full metadata → allowed