Skip to content

Type Alias: ListSubagentsBySessionResponse

Makaio Framework


Makaio Framework / contracts / ListSubagentsBySessionResponse

Type Alias: ListSubagentsBySessionResponse

Section titled “Type Alias: ListSubagentsBySessionResponse”

ListSubagentsBySessionResponse = z.infer<typeof ListSubagentsBySessionResponseSchema>

Defined in: ../../../packages/contracts/src/subagent/schemas.ts:329

type ListSubagentsBySessionResponse = {
subagents: Array<{ subagentId: string; task: string; status: 'completed' | 'cancelled' | 'running' | 'failed' | 'waiting_input' | 'spawning' | 'hung'; workstreamId?: string | undefined; }>;
};