{% extends "flow.html" %} {% set step = "review" %} {% block main %}

Review

the resolved configuration and the exact inputs it will run on — this page IS the run's contract

Lever changes vs preset

{% if diff %} {% for k, was, now in diff %} {% endfor %}
LeverPresetThis run
{{ k }}{{ was }}{{ now }}
{% else %}

None — the preset runs unchanged.

{% endif %} {% if allow_red %}
RED findings overruled. This run proceeds against blocking sanity findings; the overrule and the findings are part of the run record.
{% endif %} {% if notes %}

Degradation notes

{% for n in notes %}
note. {{ n }}
{% endfor %} {% endif %}

Input fingerprints

{% for name, h in hashes %} {% endfor %}
Filesha256 (first 16)
{{ name }}{{ h }}

Reproducing this run later is restitch run --manifest <rundir>/manifest.yaml; the verify command will refuse if any input has changed since.

Back to levers
{% endblock %}