{% extends "base.html" %} {% block title %}Briefing{% endblock %} {% block content %}

Briefing

What needs attention now, ranked across project sources. {% if result.model %}{{ result.model }}{% endif %} {% if result.cost_usd %}ยท ${{ "%.4f"|format(result.cost_usd) }}{% endif %}

{# Hero: the executive summary. [item_id] markers are rendered as plain text in v1; turning them into inline anchor chips is a polish follow-up (see decisions.md D6). #}

{{ result.summary }}

{% if items %}
{% for item in items %}
{{ item.severity }}

{{ item.title }}

{{ item.rationale }}

{% if item.sources %}
{% for src in item.sources %} {{ src }} {% endfor %}
{% endif %}
{% set action = item.suggested_action %} {% if action and action.kind == "open" and action.url %} {{ action.label or "Open" }} {% elif action and action.kind == "ask" and action.question %}

{{ action.question }}

{% for choice in action.choices %} {% endfor %}
{% elif action and action.kind == "run" and action.workflow %} Suggested: run {{ action.workflow }} {% if action.scope %}on {{ action.scope }}{% endif %} โ€” go to Workflows โ†’ {% endif %}
{% endfor %}
{% else %}

Nothing pressing right now. The briefing is quiet โ€” no items rank above noise.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}