{% from "components/card.html" import stat_card %} {% set grade_color = {'A': '#2ec27e', 'B': '#0770E3', 'C': '#f59e0b', 'D': '#fb923c', 'F': '#ef4444'} %}
{{ stat_card( label="Total Team Runs", value=(summary.total_teams|default(0)|int)|string, icon='' ) }} {{ stat_card( label="Total Tokens", value=(summary.total_tokens|default(0)|format_compact), icon='' ) }} {{ stat_card( label="Total Cost", value="$" + ("%.2f"|format(summary.total_cost|default(0.0)|float)), icon='' ) }}
{% if summary.teams %}

Team Run Details

Each row is one team invocation. Tokens and costs are summed across all team members. Click a row to see harness performance for the invoking session.

{% for team in summary.teams %} {% endfor %}
Team Session Members Models Harness Exchanges Total Tokens Cost View harness detail
{{ team.name[0]|upper }}
{{ team.name }}
{{ team.project }}
{% if team.parent_session_id and team.parent_session_id[:8] != team.name %}
{{ team.parent_session_id[:8] }}
{% endif %}
{% if team.members %}
{% for m in team.members %}
{{ m.role }} {{ m.tokens|format_compact }} ${{ "%.2f"|format(m.cost) }}
{% endfor %}
{% else %} {% endif %}
{% if team.model_breakdown %}
{% for m in team.model_breakdown %} {{ m.display }} {% endfor %}
{% else %} {% endif %}
{% if team.harness_grade %} {% set gc = grade_color.get(team.harness_grade, '#6b7280') %} {{ team.harness_grade }} {{ team.harness_score }} {% elif team.parent_session_id %} not scored {% else %} {% endif %} {{ team.exchange_count }} {{ team.total_tokens|format_compact }} ${{ "%.2f"|format(team.cost) }} {% if team.parent_session_id %} {% endif %}

Invoking Session — Harness Performance

Click a team run to see how the harness performed in the session that invoked it.

{% else %}

No team usage found

Use the Teams feature in Claude Code to see team analytics

{% endif %}