{% extends "base.html" %} {% block title %}Tools & Capabilities — Mission Control{% endblock %} {% block extra_styles %}{% endblock %} {% block content %}
TOOLS & CAPABILITIES
Agent tools and usage statistics
{{ total_calls }}
TOTAL CALLS
// AVAILABLE TOOLS
{% for tool_id, tool_info in available_tools.items() %}
{{ tool_info.name }}

{{ tool_info.description }}

AVAILABLE TO
{% for persona in tool_info.available_in %} {{ persona|title }} {% endfor %}
{% endfor %}
// AGENT CAPABILITIES
{% if agent_tools %}
{% for agent in agent_tools %}
{{ agent.name }} {{ agent.status }} {% if agent.stats %} {{ agent.stats.total_calls }} calls {% endif %}
{% if agent.tools %}
{% for tool in agent.tools %} {{ tool.name }} {% endfor %}
{% else %}

No tools assigned

{% endif %}
{% endfor %}
{% else %}
No agents registered yet.
{% endif %}
{% endblock %}