What is a subagent in Cloud Code?	A specialized assistant that Cloud Code can delegate tasks to, running in its own conversation context window with a custom system prompt.
How does a subagent help manage context window usage?	It isolates intermediate work in a separate context window, so only a summary is returned to the main thread rather than storing all tool calls and results.
What two inputs does a subagent receive?	A custom system prompt from the configuration file and a task description written by the parent agent.
What happens to a subagent's conversation after it completes its task?	The entire subagent conversation gets completely discarded after returning a summary to the main thread.
What is the main disadvantage of using subagents?	The main window loses visibility into how the subagent reaches its conclusions and what it discovered along the way.
Name three built-in subagents included in Cloud Code.	The General Purpose subagent, the Explore subagent, and the Plan subagent.
What is the General Purpose subagent used for?	Multi-step tasks that require both exploration and action.
What is the Explore subagent used for?	Fast searching of codebases.
What is the Plan subagent used for?	Research and analysis of your codebase before presenting a plan during plan mode.
Can you create custom subagents in Cloud Code?	Yes, you can create your own subagents with custom system prompts and tool access.
