{% extends "base.html" %} {% block content %}
Viral screen

Memory Mirror

This is the memory AI is currently using about you.
Active scope: {{ active_scope.label }}
Screenshot-friendly

Identity

{% for item in sections['IDENTITY.md'][:8] %}
{{ item }}
{% else %}
(empty)
{% endfor %}

Preferences

{% for item in sections['PREFERENCES.md'][:8] %}
{{ item }}
{% else %}
(empty)
{% endfor %}

Memory health

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

Corrections

{% for item in sections['CORRECTIONS.md'][:8] %}
{{ item }}
{% else %}
(empty)
{% endfor %}

Contradictions / tensions

{% for item in tensions %}
{{ item }}
{% else %}
None detected.
{% 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 %}