AI Governance Guide

Operanix Governance provides complete oversight, risk management, and compliance enforcement for your AI agent workforce. This guide covers all 10 governance tabs, the trust score formula, RBAC model, and approval chain workflows.

Governance is not optional in Operanix. Every agent action, knowledge update, and configuration change flows through the governance framework. This is how enterprises maintain control as they scale AI operations.

Tab 1: Trust Overview

The Trust Overview dashboard provides a real-time snapshot of your organization's AI governance posture. The centerpiece is the composite Trust Score, calculated across five dimensions.

5-Dimension Trust Score Formula

The trust score is a weighted composite ranging from 0 to 100:

Trust Score = (
    0.25 x Safety Score +
    0.25 x Accuracy Score +
    0.20 x Compliance Score +
    0.15 x Transparency Score +
    0.15 x Control Score
)
DimensionWeightMeasures
Safety25%Violation rate, safety gate pass rate, PII leak incidents, harmful output count
Accuracy25%Groundedness score, hallucination rate, factual correctness on eval sets, user feedback rating
Compliance20%Policy adherence rate, audit findings, regulatory coverage, data retention compliance
Transparency15%Citation rate, source attribution coverage, explanation quality, audit trail completeness
Control15%Approval chain completion rate, RBAC coverage, human override frequency, escalation response time

Compliance Posture Levels

LevelScore RangeStatusAction Required
Exemplary90–100GreenMaintain current practices
Strong75–89BlueMinor improvements recommended
Adequate60–74YellowAddress flagged gaps within 30 days
At Risk40–59OrangeImmediate remediation plan required
Critical0–39RedAgents paused until score improves above 40
When the trust score drops below 40 (Critical), all agents are automatically paused and require manual re-activation by a Governance Admin after remediation.

Tab 2: Risk & Violations

The Risk & Violations tab tracks every policy violation, safety incident, and risk event across your agent fleet.

Tab 3: Policy Health

The Policy Health tab monitors the effectiveness of your configured governance policies.

Tab 4: Approval Queue

The Approval Queue centralizes all pending governance decisions. Items that require human sign-off before proceeding appear here.

Tab 5: Access Control (RBAC)

Operanix implements role-based access control with 8 predefined roles. Each role has granular permissions across agents, knowledge, governance, and platform settings.

8 RBAC Roles

RoleScopeKey Permissions
Platform OwnerGlobalFull access to all settings, billing, tenant management, and role assignments
Governance AdminGlobalManage policies, safety gates, approval chains, compliance settings, and audit exports
Agent ManagerAssigned agentsCreate, configure, deploy, and retire agents. Manage agent-level knowledge and schedules
Knowledge EditorAssigned domainsAdd, review, and approve knowledge sources. Manage the knowledge pipeline
Compliance OfficerGlobal (read) + compliance actionsReview compliance reports, approve regulated content, manage data retention, export audit logs
AnalystRead-only analyticsView dashboards, reports, and metrics. No configuration or approval permissions
OperatorAssigned agentsMonitor agent performance, handle escalations, manage inbox. Cannot modify agent configuration
ViewerRead-onlyView agent status and basic metrics. No access to conversations, knowledge, or settings

Custom Roles

Enterprise plans can create custom roles by combining individual permissions. Custom roles support scope restrictions (limit to specific agents, teams, or departments) and time-limited access grants.

All role assignments and permission changes are logged in the audit trail. The system enforces separation of duties: the same user cannot hold both Agent Manager and Compliance Officer roles simultaneously.

Tab 6: Safety Gates

Safety gates are automated guardrails that evaluate every agent response before it reaches the end user. Gates run in sequence and any gate failure blocks the response.

Built-in Safety Gates

Gate Configuration

{
  "gate": "pii_detection",
  "enabled": true,
  "mode": "block",
  "sensitivity": "high",
  "custom_patterns": [
    { "name": "employee_id", "regex": "EMP-\\d{6}" },
    { "name": "internal_code", "regex": "INT-[A-Z]{2}-\\d{4}" }
  ],
  "on_trigger": {
    "action": "redact_and_warn",
    "notify": ["compliance-team@company.com"],
    "log_level": "critical"
  }
}

Tab 7: Approval Chains

Approval chains define multi-step approval workflows for high-impact actions. Each chain specifies the required approvers, order, and escalation rules.

Chain Structure

Default Approval Chains

ActionChainSLA
Agent production deployAgent Manager → Governance Admin24 hours
Knowledge publish (standard)Knowledge Editor → Agent Manager12 hours
Knowledge publish (regulated)Knowledge Editor → Compliance Officer → Governance Admin48 hours
Policy changeGovernance Admin → Platform Owner24 hours
RBAC role assignmentRequesting Manager → Platform Owner12 hours

Tab 8: Audit Timeline

The Audit Timeline provides a complete, immutable record of every action taken within the Operanix platform.

Recorded Events

Audit Features

Tab 9: Analytics

The Governance Analytics tab provides quantitative insights into your governance program's effectiveness.

Tab 10: Compliance Export

The Compliance Export tab generates audit-ready reports for regulatory submissions and compliance reviews.

Export Formats

Compliance exports include cryptographic integrity hashes. Auditors can verify that exported data has not been tampered with by validating the hash chain against the platform's audit trail.

Best Practices