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

{{ title }}

{{ content or 'No governance safety report generated yet.' }}

Runtime Constraints

{{ constraints or 'No runtime constraint report generated yet.' }}

Recent Governance Violations

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

Recent Agent Events

{% for row in events %} {% else %} {% endfor %}
EventAgentTypePayload HashCreated
{{ row.event_id }}{{ row.agent_name or '-' }}{{ row.event_type }}{{ row.payload_hash }}{{ row.created_at }}
No events recorded.
{% endblock %}