{% extends "base.html" %} {% block content %}

Registered Agents

{% for a in agents %}
{{ a.icon or "🤖" }}
{{ a.name }}
v{{ a.version }} · {{ a.state }}
{% else %}
No agents registered.
{% endfor %}
Select an agent from the list to see its configuration and behavior.
{% endblock %}