{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Governance Agents{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Autonomous Governance Agents

Documentation, architecture intelligence, operational memory, ownership records, deployment governance, and enterprise summaries.

Admin Dashboard
{% if table_warning %}
Governance Notice

{{ table_warning }}

{% endif %}
{% for name, agent in agents.items() %}

{{ agent.title }}

{{ agent.purpose }}

Cooldown: {{ agent.cooldown_seconds }} seconds

Trust: {{ agent.trust_baseline }} | Permissions: {{ agent.permissions|join(', ') }}

{% endfor %}

Recent Runs

{% for run in runs %} {% else %} {% endfor %}
IDAgentStatusReasonDurationStarted
{{ run.id }} {{ run.agent_name }} {{ run.status }} {{ run.reason or '-' }} {{ run.duration_ms or 0 }} ms {{ run.started_at }}
No agent runs recorded yet.

Recent Failures

{% for failure in failures %} {% else %} {% endfor %}
IDAgentErrorCreated
{{ failure.id }}{{ failure.agent_name }}{{ failure.error }}{{ failure.created_at }}
No recent agent failures.

Governance Violations

{% for violation in violations %} {% else %} {% endfor %}
IDAgentTypeSeveritySummaryCreated
{{ violation.id }} {{ violation.agent_name or '-' }} {{ violation.violation_type }} {{ violation.severity }} {{ violation.summary }} {{ violation.created_at }}
No governance violations recorded.

Documentation Quality

{% for report in quality_reports %} {% else %} {% endfor %}
IDScoreSummaryCreated
{{ report.id }}{{ report.quality_score }}/100{{ report.summary }}{{ report.created_at }}
No quality reports recorded yet.
{% endblock %}