{% extends "base.html" %} {% block title %}Admin tools{% endblock %} {% block content %}
HelpAdmin tools

Admin tools

Maintenance surface for the .help/templates/ corpus — coverage gaps and stale templates. Report-only: regeneration runs at release-prep cadence via /coach maintain.

{{ report.completeness_pct }}%
complete
{{ report.total_templates }}
templates
{{ report.fresh_pct }}%
fresh
{{ report.stale | length }}
stale
Refresh page
{% if report.incomplete %}

Incomplete sets {{ report.incomplete | length }}

{% for f in report.incomplete %} {% endfor %}
FeatureKindsCompletenessMissing
{{ f.name }} {{ f.kinds | length }}/11 {{ f.completeness_pct }}% {{ f.missing_kinds | join(", ") }}
{% endif %} {% if report.stale %}

Stale templates {{ report.stale | length }}

Source has changed since the template was generated (source-hash drift).

{% for t in report.stale[:25] %} {% endfor %} {% if report.stale | length > 25 %} {% endif %}
FeatureKindGenerated
{{ t.feature }} {{ t.kind }} {{ t.generated_at | replace("T", " ") | replace("+00:00", " UTC") }}
… {{ (report.stale | length) - 25 }} more
{% endif %}

How regen works

  1. This page is report-only — it surfaces gaps and staleness but never spends LLM polish.
  2. Regeneration runs deliberately at release-prep cadence via /coach maintain (the absorbed attune.authoring generator).
  3. Review regenerated content before committing — the polish pass is LLM-assisted; spot-check the facts you care about per the existing hallucination-shapes lesson.
{% endblock %}