{% extends "base.html" %} {% block title %}Overview — Vigil{% endblock %} {% block content %}
Current Frame
{{ frame or "default" }}
Active Agents
{{ agents | length }}
Signals (last hour)
{{ signals | length }}

Awareness

{% if compiled_at %} compiled {{ compiled_at }} {% endif %}
{% include "partials/awareness.html" %}

Focus Queue

{{ focus | length }} item{{ "s" if focus | length != 1 else "" }}
{% if focus %}
{% for item in focus %}
P{{ item.priority }} {{ item.description }} {% if item.owner %} {{ item.owner }} {% endif %}
{% endfor %}
{% else %}

No active focus items.

{% endif %}

Live Signals

polling every 5s
{% include "partials/signal_list.html" %}

Agents

view all
{% if agents %} {% for a in agents %} {% endfor %}
Agent Signals Last seen
{{ a.from_agent }} {{ a.signal_count }} {{ a.last_seen or "—" }}
{% else %}

No agents yet.

{% endif %}
{% endblock %}