{% 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 sessions %} {% for s in sessions %} {% endfor %}
Session ID Tool Status Started Label
{{ s.id[:12] }}… {{ s.tool }} {{ s.status }} {{ s.started_at }} {{ s.label or '—' }}
{% else %}

No sessions recorded yet.

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