{% from "components/card.html" import stat_card %}
{{ stat_card( label="Total Tools Used", value=(features.total_tools|default(0)|int)|string, icon='' ) }} {{ stat_card( label="Total Calls", value=(features.total_calls|default(0)|int)|string, icon='' ) }} {{ stat_card( label="Total Tokens", value=(features.total_tokens|default(0)|format_compact), icon='' ) }} {{ stat_card( label="Total Cost", value="$" + (features.total_cost|default(0.0)|float|round(2)|string), icon='' ) }} {{ stat_card( label="Sub-Agents Used", value=(features.sub_agents_used|default(0)|int)|string, icon='' ) }}

Pricing note: Tool costs are estimated using Claude Sonnet 4.5 rates, as per-tool model tracking is not available.

{% if features.tool_usage %}

Tool Usage

{% if features.has_trends %} {% endif %} {% for tool in features.tool_usage[:20] %} {% if features.has_trends %} {% endif %} {% endfor %}
Tool Name Category Calls Tokens Cost/CallTrendEst. Cost
{{ tool.name }}
{{ tool.category|default('Unknown') }} {{ tool.usage_count }} {{ tool.total_tokens|default(0)|int }} ${{ "%.4f"|format(tool.cost_per_call|default(0.0)|float) }} {% if tool.trend %} {% if tool.trend.direction == 'down' %} ↓ {{ tool.trend.change_percent }}% {% elif tool.trend.direction == 'up' %} ↑ +{{ tool.trend.change_percent }}% {% else %} - {% endif %} {% else %} - {% endif %} ${{ tool.cost|default(0.0)|float|round(2) }}
{% if features.categories %}

Feature Categories

{% for category, count in features.categories.items() %}
{{ category.title() }}
{{ count }}
{% endfor %}
{% endif %} {% else %}

No feature usage data available

Start using Claude Code tools and features to see usage statistics

{% endif %}