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

Dashboard

{% if not db_available %}

No data yet

The AtlasBridge database has not been created. Run a supervised session to start collecting data:

atlasbridge run claude
{% else %}
{{ stats.sessions }}
Total Sessions
{{ stats.active_sessions }}
Active Sessions
{{ stats.prompts }}
Prompts
{{ stats.audit_events }}
Audit Events

Recent Sessions

{% if filter_status or filter_tool or filter_q %} Clear {% endif %}
{% if sessions %}
{% for s in sessions %} {% endfor %}
Session ID Tool Status Started Label
{{ s.id[:12] }}… {{ s.tool }} {{ s.status }} {{ s.started_at|timeago }} {{ s.label or '—' }}
{% else %}

No sessions found{% if filter_status or filter_tool or filter_q %} matching the current filters. Clear filters{% endif %}.

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