{% extends "base.html" %} {% set active_page = 'agents' %} {% block title %}Agent Setup · agentplan dashboard{% endblock %} {% block body_class %}dashboard-agents{% endblock %} {% block topbar_right %}
--:--:-- connecting…
{% endblock %} {% block content %}

Configured Agents

{% if agents %} {% for agent in agents %} {% set row_key = agent.name|replace(' ', '-')|lower %} {% endfor %}
Name Command Roles Actions
{{ agent.name }} {{ agent.command_template }}
{% for role in agent.roles %} {{ role }} {% endfor %} {% if not agent.roles %} none {% endif %}
{% else %}

No agents configured.

{% endif %}

Detected Tools

{% for tool in detected_tools %}
{{ tool.name }}{{ 'found' if tool.found else 'missing' }}
{% endfor %}

Add Agent

{% for role in roles %} {% endfor %} {% if not roles %}
No roles available yet.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}