{# Findings section — collapsible
with one card per finding. Each card is the core narrative unit: - Header strip: severity pill + finding id + ASI category tag - Headline: one-line plain-English summary from finding.summary - Evidence accordion (nested
): · Probe metadata · MITRE ATLAS techniques · Open in other themes (deep links carry ?theme=) - Footer: created-at timestamp + per-card permalink Findings are grouped by severity. The sev anchor IDs match the bar-chart onClick handler in narrative_charts.js (#nr-sev-critical, etc.). #} {% set _by_sev = {'critical': [], 'high': [], 'medium': [], 'low': []} %} {% for f in findings_page %} {% set _bucket = _by_sev.get(f.severity_class) %} {% if _bucket is not none %} {% set _ = _bucket.append(f) %} {% endif %} {% endfor %}
0 %} open{% endif %}> All findings so far. {{ findings_total }}
{% if findings_total == 0 %}

{% if is_running %} The swarm is still landing probes. Findings will appear here as soon as the evaluator agent issues a verdict. {% else %} No findings surfaced. The agent held clean across every probe the swarm dispatched. The reproducibility receipt at the bottom locks the exact configuration for re-running this scan. {% endif %}

{% else %}

Each card below shows the swarm's verdict, the probe that surfaced it, and the ASI category it maps to. Open a card to drill into the evidence; click Open in IDE to read the raw trace.

{% for _sev_key, _sev_items in [('critical', _by_sev.critical), ('high', _by_sev.high), ('medium', _by_sev.medium), ('low', _by_sev.low)] %} {% if _sev_items %}

{{ _sev_key | upper }} {{ _sev_items | length }} finding{% if _sev_items | length != 1 %}s{% endif %}

{% for f in _sev_items %}
{{ f.severity_label }} {{ f.id }} ASI {{ f.asi_code }}

{{ f.summary }}

Probe
{{ f.probe_id }}
CSA
{{ f.csa_code }}
Created
{{ f.created_label }}
Evidence trail
{% if f.atlas %}

MITRE ATLAS

    {% for technique in f.atlas %}
  • {{ technique }}
  • {% endfor %}
{% endif %}

Probe identifier

{{ f.probe_id }}

Reference

seed {{ rng_seed }} {{ f.created_label }} permalink
{% endfor %}
{% endif %} {% endfor %} {% if pagination and pagination.total_pages > 1 %} {% endif %} {% endif %}