{% extends "base.html" %} {% from "_partials/status.html" import status %} {% block main %}

Hub federation

Store overview

Everything searchable lives in the hub's federation/ mirror. Local .kb/ drafts are never queried.

Documents {{ stats.docs }} across {{ stats.repos }} repos
Sections {{ stats.sections }} L2 + L3 indexed
L0 catalog {{ stats.l0_tokens }} tk whole-store index
Saving / lookup ≥ 99% vs. loading the full doc

Review queue

{{ awaiting_total }} sections awaiting review open catalog →
{% for item in queue %}
{{ item.doc_id }} §{{ item.section_id }} {{ item.title }} {{ status(item.status) }}
{% else %}

Nothing awaiting review.

{% endfor %}
{% endblock %} {% block rail %}

Store health

hub {{ 'reachable' if shell.hub_ok else 'unreachable' }}
federation index {{ 'present' if index_ok else 'missing' }}
{{ pending_total }} sections pending

Last publish

{% if publish.commit %}
Commit{{ publish.commit }}
{% endif %} {% if publish.published_at %}
Published{{ publish.published_at }}
{% endif %} {% if publish.repos %}
Repos{{ publish.repos | join(', ') }}
{% endif %} {% if not (publish.commit or publish.repos) %}
no publish data
{% endif %}

Layers

L0 catalog · L1 manifest · L2 summary · L3 original
{% endblock %}