{% extends "base.html" %} {% block title %}psyc — operations cockpit{% endblock %} {% block content %}

Defensive CTI in motion

What psyc has seen and done — at a glance.

All cases →
{{ kpis.cases }}
cases tracked
{{ kpis.iocs }}
IOCs indexed
+{{ kpis.new_24h }}
new in 24 h
{{ kpis.high_total }}
high / critical
⚡ {{ kpis.enforcements_24h }}
enforced 24 h
{{ kpis.ledger_total }}
ledger entries
{% if featured %} {% endif %}

Recent activity

{{ buckets|sum(attribute='items')|length }} items

Live feed of what psyc has detected and what it has done about it.

{% if not buckets %}

Nothing recent yet — start with psyc fetch-all.

{% endif %} {% for b in buckets %}

{{ b.label }} {{ b.items|length }}

    {% for i in b.items %}
  1. {% if i.kind == 'case' and i.case_id and case_glyphs.get(i.case_id) %} {{ case_glyphs[i.case_id]|safe }} {% else %} {{ i.icon }} {% endif %}
    {{ i.headline }} {% if i.severity %}{{ i.severity }}{% endif %}
    {{ i.body }}
    {% if i.case_id %} · {{ i.case_id }}{% endif %}
  2. {% endfor %}
{% endfor %}
{% endblock %}