No agents detected yet
Agents will appear here when Claude uses the Task tool
{:else}
{#each flattenedAgents as { agent, depth } (agent.toolUseId)}
{#if depth > 0}
{/if}
{agent.characterName}
{getSubagentTypeLabel(agent.subagentType)}
{#if agent.durationMs !== undefined}
{Math.floor(agent.durationMs / 1000)}s
{:else}
{formatDuration(agent.startedAt, agent.endedAt)}
{/if}
{#if agent.status === "running"}
{/if}
{agent.description}
{#if agent.status === "running"}
Running...
{:else if agent.status === "completed"}
Completed
{:else}
Errored / Killed
{/if}
{#if agent.lastAssistantMessage}
{agent.lastAssistantMessage}
{/if}