Spawner Activity Dashboard

{% for spawner in spawner_stats %}

{% if spawner.spawner_type == 'gemini' %} Google Gemini (FREE) {% elif spawner.spawner_type == 'codex' %} OpenAI Codex (Paid) {% elif spawner.spawner_type == 'copilot' %} GitHub Copilot (Subscription) {% else %} {{ spawner.spawner_type|title }} {% endif %}

Delegations {{ spawner.total_delegations }}
Success Rate {{ spawner.success_rate or 0 }}%
Avg Duration {{ spawner.avg_duration or 0 }}s
Total Tokens {{ spawner.total_tokens or 0 }}
Total Cost ${{ spawner.total_cost or 0 }}
{% endfor %} {% if not spawner_stats %}

No spawner activity yet

Spawner delegations will appear here as AI agents delegate work
{% endif %}

Recent Spawner Activities

{% if recent_activities %} {% for activity in recent_activities %} {% endfor %}
Timestamp Orchestrator Spawner Spawned AI Task Status Duration Tokens Cost
{{ activity.timestamp }} {{ activity.orchestrator_agent }} {{ activity.spawner_type|upper }} {{ activity.spawned_agent or 'unknown' }} {{ activity.task[:60] }}{% if activity.task and activity.task|length > 60 %}...{% endif %} {{ activity.status }} {{ activity.duration or 0 }}s {{ activity.tokens or 0 }} ${{ activity.cost_usd or 0 }}
{% else %}

No spawner activities recorded yet

Activities will appear here when agents delegate work to spawned models
{% endif %}