{% extends "base.html" %} {% block title %}approvals · Maverick{% endblock %} {% block content %}

approval queue

High-risk actions an agent has parked for your decision. Populated when a goal runs with MAVERICK_CONSENT_MODE=dashboard: the agent waits here until you approve or deny.

{% if approvals %} {% for a in approvals %} {% endfor %}
actionrisk scopedetail decision
{{ a.action }} {{ a.risk }} {{ a.scope or '—' }} {{ a.detail or '' }}
{% else %}

No pending approvals.

{% endif %}

{% endblock %}