Runtime Control Layer · Authority Boundaries

Define Authority
Boundaries

Prevent agents or models from executing actions outside their permitted scope. Define enforcement rules with conditions, thresholds, and automated actions. Every enforcement decision is recorded in the Provenance Vault.

Custom Rules Builder Interface

Capabilities

Define, enforce, and track your governance rules.

Rule Builder

Define custom governance rules with conditions, thresholds, and automated actions.

  • Visual Rule Builder
  • Condition Logic
  • Action Triggers

Real-Time Enforcement

Rules evaluated on every AI output in real time with automatic enforcement.

  • Every Output Checked
  • Automatic Blocking
  • Override Workflows

Violation Tracking

Complete audit trail of every rule violation with severity classification.

  • Violation Log
  • Severity Levels
  • Email Alerts

Define Rules in Code or UI

Create governance rules through the visual builder or the API. Either way, enforcement is immediate.

01

Define Rule

Set conditions, thresholds, and actions via API or visual builder.

02

Deploy

Rules go live immediately across all AI outputs in your workspace.

03

Monitor

Real-time violation tracking with email alerts and audit trail.

rule_definition.json
{
  "rule_id": "rl_pii_block",
  "name": "Block PII in Outputs",
  "condition": {
    "type": "contains_pii",
    "categories": ["ssn", "credit_card", "phone"]
  },
  "action": "block",
  "severity": "critical",
  "alert": {
    "email": ["compliance@company.com"],
    "webhook": "https://..."
  }
}

The Automation Difference

From manual review to automated enforcement.

Before — Manual Governance

Inconsistent

  • Rules enforced manually by review teams
  • No real-time detection of violations
  • Inconsistent enforcement across teams

After — Automated Rules

Xybern Custom Rules

  • Rules enforced automatically on every output
  • Real-time violation detection and blocking
  • Consistent governance across all AI systems

What You Can Configure

Full control over every aspect of your governance rules.

Thresholds

Set trust score minimums, bias limits, and PII sensitivity levels.

Actions

Block, flag, alert, or redirect outputs based on rule conditions.

Alerts

Email notifications, webhook callbacks, and Slack integrations.

Schedules

Time-based rules for business hours, blackout periods, and review windows.

Violation Log

Every rule violation tracked with full context and severity classification.

Recent Violations

Rule: All Rules

PII Detected in Output

Critical
Blocked 2 min ago

rl_pii_block

Trust Score Below Threshold

High
Flagged 18 min ago

rl_min_trust

Bias Pattern Detected

Medium
Alerted 1 hr ago

rl_bias_check

Unauthorized Data Access

Critical
Blocked 3 hrs ago

rl_data_gate

API

Custom Governance Rule API

Use POST /api/v1/rules to define custom governance rules programmatically. Set conditions, actions, and alert recipients in a single request.

Rules are activated immediately upon creation. Every rule violation is tracked, logged, and available through the violations API endpoint for enforcement reporting and provenance.

api_request.sh
// POST /api/v1/rules
{
  "name": "Minimum Trust Score",
  "condition": {"trust_score_below": 0.7},
  "action": "block",
  "alert": ["admin@company.com"]
}

// Response
{
  "rule_id": "rl_min_trust_7x",
  "status": "active",
  "created_at": "2025-01-15T10:30:00Z"
}

Automate Your Governance

Deploy custom governance rules across every AI system in your organisation.