{% extends "base.html" %} {% block title %}Palinode · dashboard{% endblock %} {% block crumb %}dashboard{% endblock %} {% block content %}

Memory health

A read-only view of what the agent remembers — and whether it holds up.

{{ "{:,}".format(total_memories or 0) }}
memories
{{ "{:,}".format(total_chunks or 0) }}
chunks
{{ "{:,}".format(core_count or 0) }}
core
{{ stale_count or 0 }}
stale
{{ orphaned_count or 0 }}
orphaned
{{ missing_descriptions or 0 }}
no description
{{ contradictions or 0 }}
contradictions
{{ git_commits_7d or 0 }}
commits / 7d
{% if unindexed %}
{{ "{:,}".format(total_memories or 0) }} memories on disk, 0 indexed. The search index is empty — start the watcher (palinode-watcher) to embed them. Counts above come from the files; chunks, search, and the recent list stay empty until indexing runs.
{% endif %}

Recent memory

{% if recent %} {% elif unindexed %}

Nothing indexed yet — start palinode-watcher to populate this list.

{% else %}

No memories yet.

{% endif %}
{% endblock %}