{# Right-rail agents panel partial. Polled by base.html via HTMX every 2s. Reuses list_active_task_runs() — same data feed as the top progress bar, just rendered vertically with per-run link to /agents/run/{id}. When no runs are active, the partial still emits content (header + empty state) so the aside has a stable height and doesn't collapse to 0. #}
Agents
{% if runs %}{{ runs | length }} 个在跑{% else %}空闲{% endif %}
{% if runs %} {% if runs | length > 10 %}
还有 {{ runs | length - 10 }} 个 → 查看全部
{% endif %} {% else %}
没有 agent 在跑
点页面上的"抓取"/"改写"按钮
{% endif %}