{% extends "base.html" %} {% block title %}Integrity — AtlasBridge{% endblock %} {% block content %}

Integrity Verification

{% if not db_available and not trace_available %}

No data yet

Neither the database nor the decision trace file exist. Run a supervised session to start collecting data:

atlasbridge run claude
{% else %}
{{ 'VALID' if trace_valid else 'INVALID' }}
Decision Trace Chain
{{ 'VALID' if audit_valid else 'INVALID' }}
Audit Event Chain
{% if trace_errors %}

Trace Integrity Errors

{% endif %} {% if audit_errors %}

Audit Integrity Errors

{% endif %} {% if audit_events %}

Recent Audit Events

{% for e in audit_events %} {% endfor %}
Timestamp Event Type Session Payload
{{ e.timestamp }} {{ e.event_type }} {% if e.session_id %} {{ e.session_id[:12] }}… {% else %} — {% endif %}
Show payload
{{ e.payload }}
{% endif %} {% endif %} {% endblock %}