{% extends "base.html" %} {% block title %}Dashboard · Cascade{% endblock %} {% block content %}

Dashboard

Big-picture view of every project, its goals and live agents.

{% if projects %}
{% for project in projects %}
{{ project.name }} {% if project.mission %}

{{ project.mission }}

{% endif %}
{% if project.id in live_projects %}agent live{% else %}idle{% endif %}
loading goals & tasks…
{% endfor %}
{% else %}
🌀

No projects yet

Create your first project to start orchestrating agent work with strategic coherence.

{% endif %}
Live Agents
{{ live_projects|length }}
Total Projects
{{ projects|length }}
Monitoring Loop
10s tick
{% endblock %} {% block scripts %} {% endblock %}