{% for card in agent_cards %} {% set agent = card.agent %}
{{ agent.name }} {% for v in card.versions %} {{ v.id }} · {{ v.state }} {% endfor %}

{{ agent.purpose }}

LLM: {{ agent.llm.provider }}/{{ agent.llm.model }} HITL threshold: risk ≥ {{ agent.risk_threshold_for_hitl }} Policy: {% for g in agent.guardrails %} {{ g }}{% if not loop.last %}, {% endif %} {% endfor %} Owner: {{ agent.owner }}
Show system prompt and output schema
{{ agent.system_prompt }}
{{ agent.output_schema | tojson(indent=2) }}
{% else %}
No agents registered.
{% endfor %}
{% for p in policies %}
{{ p.name }} {{ p.version }}
{{ p.on_validator_error }}

{{ p.description }}

Input validators
{% for v in p.input_validators %} {{ v.type }} {% endfor %}
Output validators
{% for v in p.output_validators %} {{ v.type }} {% endfor %}
{% else %}
No policies registered.
{% endfor %}