{% extends "base.html" %} {% set active = "dashboard" %} {% block title %}Dashboard{% endblock %} {% block content %}
{{ session_stats.total }}
Sessions
{{ session_stats.total_turns }}
Total turns
{{ skill_count }}
Skills loaded
{{ approval_stats.total_approved }} / {{ approval_stats.total_denied }}
Approved / Denied
{% if session_stats.by_platform %}
Connected Platforms
{% for platform, count in session_stats.by_platform.items() %}
{{ platform[:3] }}
{{ platform }}
{{ count }} session{{ "s" if count != 1 }}
{% endfor %}
{% endif %}
Recent Sessions
View all →
{% if recent_sessions %} {% for s in recent_sessions %} {% endfor %}
SessionPlatformTurnsUpdatedLast message
{{ s.session_id }} {{ s.platform }} {{ s.turn_count }} {{ s.updated_at[:16] }} {{ s.last_message[:60] }}
{% else %}
No sessions yet. Start a conversation to see activity here.
{% endif %}
{% if approval_stats.auto_promoted_count > 0 %}
Auto-promoted Commands
{{ approval_stats.auto_promoted_count }} auto-promoted Threshold: {{ approval_stats.threshold }}+ approvals with 0 denials
{% endif %} {% endblock %}