> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Subagent Stop Input • AI Agent SDK

> SubagentStopInput: Input for SUBAGENT_STOP hooks (a spawned subagent reached a terminal state).

# SubagentStopInput

> Defined in the [**events**](../modules/events) module.

<Badge color="blue">AI Agent</Badge>

Input for SUBAGENT\_STOP hooks (a spawned subagent reached a terminal state).

Emitted from the single completion chokepoint in
`tools/subagent_tool.py`, so it covers every path: synchronous spawns,
`background=True` jobs, resolver-routed named agents, generic factory
spawns, and failures. `success` is False (with `error` populated) when
the subagent raised.

`agent_name` on the base :class:`HookInput` carries the subagent name.

```mermaid theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#8B0000', 'primaryTextColor': '#fff', 'primaryBorderColor': '#710101', 'lineColor': '#189AB4', 'secondaryColor': '#189AB4', 'tertiaryColor': '#fff' }}}%%

graph LR
    input["Input Data"] --> agent["Agent: SubagentStopInput"]
    agent --> output["Output Result"]
    style agent fill:#8B0000,color:#fff
    style input fill:#8B0000,color:#fff
    style output fill:#8B0000,color:#fff
```

## Properties

<ResponseField name="task" type="str">
  No description available.
</ResponseField>

<ResponseField name="success" type="bool">
  No description available.
</ResponseField>

<ResponseField name="output" type="Any">
  No description available.
</ResponseField>

<ResponseField name="error" type="Optional[str]">
  No description available.
</ResponseField>

<ResponseField name="llm" type="Optional[str]">
  No description available.
</ResponseField>

<ResponseField name="permission_mode" type="Optional[str]">
  No description available.
</ResponseField>

<ResponseField name="depth" type="int">
  No description available.
</ResponseField>

<ResponseField name="duration_ms" type="float">
  No description available.
</ResponseField>

<Accordion title="Internal & Generic Methods">
  * **to\_dict**: Generic utility method.
</Accordion>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/hooks/events.py#L578">
  `praisonaiagents/hooks/events.py` at line 578
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Agents Concept" icon="robot" href="/docs/docs/concepts/agents" />

  <Card title="Single Agent Guide" icon="book-open" href="/docs/docs/guides/single-agent" />

  <Card title="Multi-Agent Guide" icon="users" href="/docs/docs/guides/multi-agent" />

  <Card title="Agent Configuration" icon="gear" href="/docs/docs/configuration/agent-config" />

  <Card title="Auto Agents" icon="wand-magic-sparkles" href="/docs/docs/features/autoagents" />
</CardGroup>
