{% extends "base.html" %} {% block title %}Handoffs — Vigil{% endblock %} {% block content %}

Handoffs

Session boundaries between agents. Most recent first.

{% if handoffs %}
{% for h in handoffs %}
{{ h.agent_id }} {{ h.ended_at or h.started_at or "—" }}

{{ h.summary or "No summary provided." }}

{% if h.files_touched %}
Files touched ({{ h.files_touched | length }})
{% for f in h.files_touched %} {{ f }} {% endfor %}
{% endif %} {% if h.decisions %}
Decisions ({{ h.decisions | length }})
    {% for d in h.decisions %}
  • {{ d }}
  • {% endfor %}
{% endif %} {% if h.next_steps %}
Next steps ({{ h.next_steps | length }})
    {% for n in h.next_steps %}
  • {{ n }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No handoffs recorded yet.

vigil handoff --agent myagent --summary "Completed auth module"
{% endif %} {% endblock %}