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

activity

{{ session_count }} sessions {{ entry_count }} transitions

Combined activity view: attested agent sessions and recent work-item transitions across permitted projects. All data comes from signed regista events — the UI renders the record, it does not re-derive it.

recent transitions

{% if entries %}
{% for e in entries %} {% endfor %}
when action key title project actor
{{ e.timestamp_label }} {{ e.transition_label }} {{ e.display_key }} {{ e.title }} {{ e.project_slug }} {{ e.actor_kind }} {{ e.actor_display }} {% if e.on_behalf_display %} on behalf of {{ e.on_behalf_display }} {% endif %} {% if e.session_url %} trail {% endif %}
{% else %}
no recent activity
transitions across permitted projects will appear here
{% endif %}

attested sessions

{% 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 %}
all sessions activity feed
{% endblock %}