{% extends "dashboard/base.html" %} {% from "partials/_macros.html" import pill, empty_state, info_toggle %} {% block page %} {% call info_toggle(key='pods', title="What is a pod?") %}

A pod groups operators under a leader, scoped to a workspace. Route work to @pod instead of naming an individual; the leader reads a roster brief and delegates to the best member, so routing stays stable as the team changes.

Assign with the pod_assign MCP tool (creates a pod-tagged task + a leader brief); the leader delegates exactly once with pod_delegate.

{% endcall %} {% if pods %}
{% for s in pods %}

{{ s.name }}

@{{ s.slug }} · {{ s.workspace }}
{% if s.open_work %} {{ pill(s.open_work ~ ' open', tone='accent') }} {% else %} {{ pill('idle', tone='neutral') }} {% endif %}
{% if s.description %}

{{ s.description }}

{% endif %}
{% for m in s.members %}
{{ m.operator[0]|upper }} @{{ m.operator }} {% if m.is_leader %} leader {% else %} {{ m.role }} {% endif %}
{% endfor %}
{% endfor %}
{% else %} {{ empty_state( title='No pods yet', body='Create one with the pod_create MCP tool: pick a leader operator, then add members. Work routed to the pod lands with the leader to delegate.' ) }} {% endif %} {% endblock %}