{% extends "base.html" %} {% block title %}Trace Entry #{{ index }} — AtlasBridge{% endblock %} {% block content %} {% 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
{% elif not entry %}

Trace entry not found

Entry #{{ index }} does not exist in the current trace file.

← Back to traces

{% else %}

Trace Entry #{{ index }}

{% for key, value in entry.items() %} {% endfor %}
{{ key }} {% if key in ('hash', 'prev_hash') %} {{ value }} {% elif key == 'excerpt' %}
Show content
{{ value }}
{% elif key == 'timestamp' %} {{ value|timeago }} {% else %} {{ value }} {% endif %}

{% if index > 0 %} ← Previous · {% endif %} Next → · All Traces · Integrity

{% endif %} {% endblock %}