HELM — Metric Health

{{ total_tasks }} tasks {% if critical_count > 0 %} {{ critical_count }} CRITICAL {% endif %} {% if warn_count > 0 %} {{ warn_count }} WARN {% endif %} {% if critical_count == 0 and warn_count == 0 %} All metrics within target {% endif %}

Metric Status

{% for card in cards %}
{{ card.label }}
{{ "%.1f"|format(card.current) }}{{ card.unit }}
target: {{ "%.0f"|format(card.target) }}{{ card.unit }} {% if card.severity != "OK" %}  {{ card.severity }} {% endif %}
{% endfor %}
{% if alerts %}

Active Alerts — C-Suite Debate Briefs

Each alert is assigned to the Helm character who owns that metric. CEO invokes each character with the debate question and synthesises responses per §6a.

{% for alert in alerts %} {% endfor %}
Severity Metric Current / Target Owner Debate question
{{ alert.severity }} {{ alert.label }} {{ "%.1f"|format(alert.current_value) }}{{ alert.unit }} / {{ "%.0f"|format(alert.target_value) }}{{ alert.unit }} {{ alert.owner_role }} {{ alert.debate_question }}
{% else %}

Active Alerts

No deviations detected — all metrics within target.

{% endif %}

Trend Snapshots (last {{ snapshots | length }})

{% if snapshots %} {% for snap in snapshots %} {% endfor %}
Timestamp Tasks Compliance Accept Return Ollama Alerts
{{ snap.timestamp[:19] | replace("T", " ") }} {{ snap.governance.total_tasks }} {{ "%.0f"|format(snap.governance.gate_compliance_rate) }}% {{ "%.0f"|format(snap.routing.accept_rate) }}% {{ "%.0f"|format(snap.routing.return_rate) }}% {{ "%.0f"|format(snap.routing.ollama_rate) }}% {% if snap.alerts.critical > 0 %}{{ snap.alerts.critical }}C {% endif %} {% if snap.alerts.warn > 0 %}{{ snap.alerts.warn }}W{% endif %} {% if snap.alerts.critical == 0 and snap.alerts.warn == 0 %}OK{% endif %}
{% else %}

No snapshots yet. Run a health-check to start tracking trends.

{% endif %}

Actions