tmux Mode — Agent Attribution

Active sessions
{{ concurrent_sessions if concurrent_sessions is defined else "—" }}
Fairness status
{{ "OK" if fairness_ok else "⚠ skewed" }}
Budget today
${{ "%.4f"|format(stats.total_cost) if stats.total_cost is defined else "0.0000" }}

Per-Agent Cost Breakdown

{% if agent_rows %} {% for row in agent_rows %} {% endfor %}
Agent / SessionRequestsTokensCost% of budget
{{ row.agent_id }} {{ row.request_count }} {{ row.total_tokens }} ${{ "%.4f"|format(row.cost) }} {{ row.budget_pct | round(1) }}%
{% else %}

No agent sessions recorded today.

{% endif %}

Concurrent Session Count (last 24h)

{% if concurrent_sessions is defined and concurrent_sessions > 0 %}

{{ concurrent_sessions }} concurrent session(s) detected.

{% if not fairness_ok %}

One agent is using >70% of today's budget. Consider adding per-session budget limits.

{% endif %} {% else %}

No concurrent session data available yet.

{% endif %}