{% extends "base.html" %} {% block title %}agent activity — dossier{% endblock %} {% block content %}

agent activity

{{ sessions | length }} attested sessions

Every entry comes from signed regista attestation events authored by cairn. The UI renders the record — it does not re-derive activity from side channels.

{% if filter_project %}
{% endif %} {% if sessions %}
{% for s in sessions %} {% endfor %}
session principal harness events started ended status
{{ s.session_id[:8] }}… {{ session_principal_display(s) }} {{ harness_display(s.harnesses) }} {{ s.event_count }} {{ format_timestamp(s.start_time) }} {{ format_timestamp(s.end_time) }} {% if s.degraded %} degraded {% elif not s.chain_intact %} chain broken {% else %} intact {% endif %}
{% else %}
no attested sessions
agent sessions recorded by cairn will appear here
{% endif %} {% endblock %}