{% extends "base.html" %} {% block title %}Memory Dashboard - Shared Context Server{% endblock %} {% block content %}

{{ scope_label }} Memory Entries

{{ total_entries }} {{ scope_label }} Entries
{{ global_count }} Global
{{ session_count }} Session
{{ all_count }} Total
{% if memory_entries %}
{% if current_scope == 'all' %}{% endif %} {% for entry in memory_entries %} {% if current_scope == 'all' %} {% endif %} {% endfor %}
Key AgentScopeValue Preview Created Actions
{{ entry.key|e }} {{ entry.agent_id|e }} {% if entry.session_id %} Session {% else %} Global {% endif %} {% set value_text = entry.value|e %} {% if value_text|length > 100 %} {{ value_text[:100] }}... {% else %} {{ value_text }} {% endif %}
{% else %}
🧠

No Global Memory Entries

When agents create global memory entries, they will appear here.

{% endif %}
{% endblock %}