{% extends "base.html" %} {% block title %}Summaries{% endblock %} {% block content %} {% if not_yet_generated %}

No summaries yet

summaries.json hasn't been generated for this workspace yet. Run the polish pass to create it:

attune-author polish

Once generated, this page will show every entry in a table you can edit inline. The polish command runs an LLM pass over your templates to produce path-keyed summaries that the RAG retriever uses for boost scoring.

{% else %} {% if error %} {% endif %} {% if summaries %}
{% for path, summary in summaries.items() %} {% endfor %}
Path Summary
{{ path }}
{% elif not error %}

summaries.json is empty.

{% endif %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}