{% extends "base.html" %} {% block title %}Tools & Capabilities — Mission Control{% endblock %} {% block content %}

🔧 Tools & Capabilities

Agent tools and usage statistics

{{ total_calls }}

Total Tool 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 %}