{# Executive — Reproducibility receipt (Narrative port; rendered as a footer in layout.html, OUTSIDE the tabpanels — appears at the bottom of every tab). Notion-style callout with the exact scan fingerprint so a stakeholder can paste the command into a terminal and rerun the scan locally. The mono REPRODUCIBILITY eyebrow leads, the 7 mono-label rows follow (SCAN_ID / SEED / GUARDIAN / AIVSS / PROBES / TARGET / EVIDENCE), and the repro shell command sits below them with a Copy button wired to executive_charts.js's mountCopyButtons(). Payload fields consumed: - scan_id - rng_seed - package_version (GUARDIAN) - aivss_formula_version (AIVSS) - probe_library_version (PROBES) - target_ref (TARGET) - evidence_fingerprint (EVIDENCE) - tier_label (repro shell command --tier flag) #}

REPRODUCIBILITY

SCAN_ID
{{ scan_id }}
SEED
{{ rng_seed }}
GUARDIAN
{{ package_version }}
AIVSS
{{ aivss_formula_version }}
PROBES
{{ probe_library_version }}
TARGET
{{ target_ref }}
EVIDENCE
{{ evidence_fingerprint }}
uv run agent-guardian scan \
  --target {{ target_ref }} \
  --tier {{ tier_label }} \
  --seed {{ rng_seed }}