{% extends "base.html" %} {% block title %}Sessions - Memory MCP Dashboard{% endblock %} {% block content %}

Sessions

Recent conversation sessions and their memories

{% if sessions %} {% for session in sessions %}
{{ session.topic or 'Untitled Session' }} {{ session.session_id[:8] }}...
{{ session.created_at[:16] }} {{ session.memory_count }} memories {% if session.project_path %} {{ session.project_path|truncate(30) }} {% endif %}
View
{% endfor %} {% else %}

No sessions recorded yet

Sessions are created automatically during conversations

{% endif %}
{% if cross_patterns %}

Cross-Session Patterns

Patterns appearing in multiple sessions - candidates for hot cache promotion

{% for pattern in cross_patterns %}

{{ pattern.content[:100] }}

{{ pattern.session_count }} sessions, {{ pattern.access_count }} accesses

{% if not pattern.is_hot %} {% else %} Hot {% endif %}
{% endfor %}
{% endif %}
{% endblock %}