{% macro executive_summary(notes_by_slot, findings) %} {% set note = notes_by_slot.get("executive_summary") if notes_by_slot else None %}
Executive summary

What this report says

{% if findings %} {% set top = findings[0] %}

{{ top.headline if top.headline else top.title }}.

{% if top.body %}

{{ top.body }}

{% endif %} {% if top.recommendation %}

Recommended action {{ top.recommendation }}

{% endif %} {% if top.caveat %}

{{ top.caveat }}

{% endif %}
{% else %}

This artifact produced no findings to summarize. Inspect the coverage and ranked-host sections below.

{% endif %} {% if note %}
Analyst note
{{ markdown_render(note.text) }}
From {{ (note.author_type or "analyst") | humanize_author }}
{% endif %}
{% endmacro %}