{% extends "base.html" %} {% block content %}
Dashboard

Your AI Memory

Active scope: {{ active_scope.label }}
Portable memory active
Identity traits
{{ counts.identity }}
name, role, focus, projects
Preferences learned
{{ counts.preferences }}
tone, format, style
Corrections saved
{{ counts.corrections }}
persistent fixes
{% if undo %}

Trust controls

{{ undo.detail }}
{% endif %}

Memory state

{% for file in memory_state %}
{{ file.name }} {{ file.desc }} {% if file.preview %}
{{ file.preview[0] }}
{% endif %}
{% endfor %}

Memory health

Status: {{ health.label }}
{% for item in health.signals %}
{{ item }}
{% endfor %}

Structured memory view

{{ structured.active_fact_count }} active facts, {{ structured.derived_fact_count }} derived facts
{% for item in structured.highlights %}
{{ item }}
{% else %}
No derived structured highlights yet.
{% endfor %}

Why trust looks like this

{% for item in trust_basis %}
{{ item }}
{% else %}
Trust explanation will appear after the first saved memory.
{% endfor %}

Memory timeline / diff

{% for item in timeline %}
{{ item }}
{% endfor %}
{% if resolutions %}

Resolve contradictions

{% for item in resolutions %}
{{ item.title }}
{{ item.reason }}
{{ item.note }}
{{ item.action_label }}
{% endfor %}
{% endif %} {% endblock %}