FSD Compliance Report

Project: {{ project }} — Generated: {{ generated_at }} — FSD v{{ fsd_version }}
{{ "ALL GATES PASSED" if overall_passed else "GATES FAILED" }}

Quality Gates

{% for gate in gates %}
{{ gate.label }} {{ "PASS" if gate.passed else "FAIL" }}
Command: {{ gate.command }} Duration: {{ "%.1f"|format(gate.duration_seconds) }}s Exit: {{ gate.exit_code }}
{% for m in gate.iso_mappings %} ISO {{ m.standard }}:{{ m.clause }} {% endfor %}
{% if gate.stdout and not gate.passed %}
Output
{{ gate.stdout }}
{% endif %}
{% endfor %}

ISO Evidence Matrix

{% for row in iso_evidence %} {% endfor %}
StandardClauseControlGateStatus
ISO {{ row.standard }} {{ row.clause }} {{ row.control }} {{ row.gate_label }} {{ "EVIDENCED" if row.passed else "MISSING" }}