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

Decision Traces

{% if not trace_available %}

No trace data

The decision trace file does not exist yet. Enable autopilot and run a session to generate trace data:

atlasbridge autopilot enable
atlasbridge run claude
{% else %}
{% if filter_action_type or filter_confidence %} Clear {% endif %}
{% if entries %}

Showing {{ entries|length }} of {{ total }} entries (page {{ page }}/{{ total_pages }})

{% for e in entries %} {% endfor %}
Timestamp Action Confidence Rule ID Session
{{ e.get('timestamp', '—')|timeago }} {{ e.get('action_type', '—') }} {{ e.get('confidence', '—') }} {{ e.get('rule_id', '—') }} {% if e.get('session_id') %} {{ e.session_id[:12] }}… {% else %} — {% endif %}
{% else %}

No trace entries found{% if filter_action_type or filter_confidence %} matching the current filters. Clear filters{% endif %}.

{% endif %} {% endif %} {% endblock %}