{% extends "base.html" %} {% block title %}guarantees · tau-x402-cage{% endblock %} {% block content %}

What does the cage guarantee right now?

Explicit list of what the cage delivers, what is currently off, and — critically — what you give up if you turn it off. Read-only. Refreshes on reload.

{% if data.get("verdict") == "error" %}
Daemon unreachable: {{ data.get("category") }} / {{ data.get("reason") }}
{% endif %}
Active guarantees
{{ active|length }}
Inactive guarantees
{{ inactive|length }}
Total catalog size
{{ entries|length }}

What you get

{% if active %} {% for g in active %} {% endfor %}
id category guarantee provided by
{{ g.get("id") }} {{ g.get("category") }} {{ g.get("summary") }} {{ g.get("provided_by") }}
{% else %}

No guarantees active. Check daemon configuration.

{% endif %}

What's off

{% if inactive %} {% for g in inactive %} {% endfor %}
id category guarantee why off
{{ g.get("id") }} {{ g.get("category") }} {{ g.get("summary") }} {{ g.get("inactive_reason") or "(unknown)" }}
{% else %}

Every shipped guarantee is active. Full coverage.

{% endif %}

What you lose if the cage is disabled

{% if entries %} {% for g in entries %} {% endfor %}
id category loss
{{ g.get("id") }} {{ g.get("category") }} {{ g.get("lost_if_disabled") }}
{% else %}

Catalog empty — daemon may be unreachable.

{% endif %}
{% endblock %}