{% macro status_badge(status) %} {% if status == 'completed' %} Success {% elif status == 'running' %} Running {% elif status == 'failed' %} Failed {% elif status == 'queued' %} Queued {% elif status == 'timeout' %} Timeout {% else %} {{ status|upper }} {% endif %} {% endmacro %} {% if rows %}
{% for row in rows %} {% endfor %}
ID Agent Status Message / Task Session Duration Cost
#{{ row.id_short }}
smart_toy
{{ agent_names.get(row.agent_id, row.agent_id) }}
{{ status_badge(row.status) }}

{{ row.message_preview or 'No message available' }}

{% if row.session_id %} {{ row.session_id[:8] }} {% else %} {% endif %} {{ format_duration(row.duration_ms) }} {{ format_cost(row.cost_usd) }}

Showing {{ rows|length }} of {{ total }} results

{% if page > 1 %} {% endif %} {% if total_pages %} {% for p in range(1, total_pages + 1) %} {% if p == page %} {{ p }} {% elif p == 1 or p == total_pages or (p >= page - 2 and p <= page + 2) %} {% elif p == page - 3 or p == page + 3 %} ... {% endif %} {% endfor %} {% endif %} {% if page < total_pages %} {% endif %}
{% else %}
terminal

No executions found

Try adjusting your filters or check if agents are correctly configured to run.

{% endif %}