{# Execution section #}

Execution

Command
{{ run.command or '—' }}
Hostname
{{ run.hostname or '—' }}
{% if run.slurm_job_id %}
SLURM Job ID
{{ run.slurm_job_id }}
{% endif %}
Duration
{{ run.duration_display }}
Exit Code
{{ run.exit_code }}
{# Provenance section #}

Provenance

Git Commit
{{ run.git_hash_short or '—' }} {% if run.git_branch %} ({{ run.git_branch }}){% endif %} {% if run.git_dirty %} dirty {% endif %}
{% if run.script_sha256 %}
Script SHA256
{{ run.script_sha256[:16] }}…
{% endif %} {% if run.sidecar_mode %}
Sidecar Mode
{{ run.sidecar_mode }}
{% endif %} {% if run.sidecar_path %}
Sidecar Path
{{ run.sidecar_path }}
{% endif %} {% if run.agent_mode %}
Agent Mode
{{ run.agent_mode }}
{% endif %} {% if run.parent_run_id %}
Parent Run
{{ run.parent_run_id[:8] }}
{% endif %}
{# Outcome section #}

Outcome

Status
{{ run.status or '—' }}
Outcome
{{ run.outcome or '—' }} {% if run.outcome_is_residual %} residual {% endif %}
{% if run.tags %}
Tags
{{ run.tags | join(', ') }}
{% endif %} {% if run.output_paths %}
Output Paths
    {% for path in run.output_paths %}
  • {{ path }}
  • {% endfor %}
{% endif %}
{# Postmortem section — only when assigned #} {% if run.postmortem_status != 'unassigned' %}

Postmortem

Status
{{ run.postmortem_status }}
{% if run.postmortem_hypothesis_status %}
Hypothesis
{{ run.postmortem_hypothesis_status }}
{% endif %} {% if run.postmortem_verdict_override %}
Verdict Override
{{ run.postmortem_verdict_override }}
{% endif %} {% if run.postmortem_author %}
Author
{{ run.postmortem_author }}
{% endif %} {% if run.postmortem_summary %}
Summary
{{ run.postmortem_summary }}
{% endif %} {% if run.postmortem_path %}
Path
{{ run.postmortem_path }}
{% endif %} {% if run.postmortem_asset_links %}
Asset Links
    {% for key, value in run.postmortem_asset_links.items() %}
  • {{ key }}: {{ value }}
  • {% endfor %}
{% endif %} {% if run.postmortem_has_anomalies %}
Anomalies
anomalies detected
{% endif %}
{% endif %}