Skip to main content
Subagents let the main agent spawn independent workers to handle subtasks. A subagent shares tools and codebase context with the parent, but operates in its own conversation chain — it does not inherit the parent’s conversation history. This is useful for tasks that benefit from focused, independent work — like exploring a codebase, running tests, or implementing a feature in parallel. You can ask the agent to use subagents explicitly (e.g. “research how auth works in a subagent”), or the agent may decide to delegate on its own when it determines a task would benefit from independent work. In our measurements, subagents both improve overall coding performance and reduce cost.

How Subagents Work

When the agent spawns a subagent, it selects one of the available subagent profiles and chooses whether the subagent should run in the foreground or background. Subagents can run in two modes:

Foreground

Runs inline in your session. The parent agent pauses and waits for the subagent to finish before continuing. You can approve or deny tool calls as they come up.

Background

Runs in parallel while the parent agent continues working. The parent is automatically notified when the subagent completes. Unapproved tools are automatically denied.
You do not see the subagent’s raw output directly. When a subagent finishes, the parent agent reads the result and summarizes the key findings and actions for you.

Subagent Cost

Subagents run as their own agent sessions, each with its own context window and inference calls, so they consume cost independently of the parent. The parent’s spend covers its own work; every subagent it spawns adds its own usage on top of that.
On prompt-based plans, each subagent consumes additional credits, just like a user message does. The number of credits depends on the model the subagent uses, so tasks that spawn multiple subagents (or nest them) consume more credits.
Because cost scales with the number of subagents, tasks that fan out into many subagents (or nest them) cost more. Use subagents deliberately when the parallelism or focused context is worth the additional spend.

Which Model Does a Subagent Use?

Subagents do not all run on the model you picked in the model picker. Each profile decides where its model comes from:
subagent_general inherits the parent’s model. If you are running a premium model, every general subagent runs on that premium model too, with its own context window and inference calls — so a task that fans out into several general subagents multiplies your spend. Ask for an explore subagent (or a custom subagent with a cheaper model: pinned) when the work is research rather than code changes.
The default subagent model is not a fixed model name — it resolves through a router at spawn time, and an admin can override it (see below). With the default Subagent router setting it resolves to SWE-1.6 (a faster or slower SWE-1.6 variant depending on your plan tier).
The CLI does not currently label which model a running subagent is using in the subagent panel.

Influencing the Model

There is no way to name a model for a subagent in a prompt — the run_subagent tool takes a profile, not a model. You have two levers:
  1. Ask for a profile in natural language. Requesting an explore subagent (“research how auth works in an explore subagent”) keeps the work on the cheap default subagent model. Asking for code changes gets you subagent_general, which runs on your selected model.
  2. Pin a model in a custom subagent profile. model: in AGENT.md is the only way to run a write-capable subagent on a model other than the parent’s. A skill that runs in a subagent can also set model: in its frontmatter to override the profile’s model.

Enterprise Controls

Administrators can govern which model subagents use — and whether subagents run at all — through the Default subagent model setting in the org/enterprise settings. This setting controls the model for subagent_explore and for custom subagents that don’t pin a model: — it does not change subagent_general, which always follows the parent agent’s model.
Default subagent model setting
It has three choices:

Subagent Profiles

Each subagent runs with a specific profile that determines its capabilities. There are two built-in profiles:
The agent automatically chooses the appropriate profile based on the task. Explore subagents are ideal for research and understanding, while general subagents can make changes. See Which Model Does a Subagent Use? for how each profile picks its model — the two profiles do not run on the same model.
You can also define your own custom subagent profiles — see Custom Subagents below.

Tool Permissions

How tool permissions work depends on whether the subagent is running in the foreground or background:
  • Foreground subagents behave like the main agent — you are prompted to approve or deny tool calls as usual.
  • Background subagents inherit any tool permissions you have already granted during the current session. Any tool that has not been pre-approved is automatically denied. Background subagents cannot prompt you for new permissions.
If a background subagent fails because a required tool was denied, you can resume it in the foreground to approve the necessary permissions. See Resuming Subagents below.

Monitoring Subagents

Subagent Indicator

When background subagents are running, an indicator appears below the input area showing their status. You can navigate to the indicator by pressing from the input area, then press Enter to open the subagent panel. When a foreground subagent is running, the spinner displays “Subagent running · Ctrl+B to run in background”.

Subagent Panel

The subagent panel lets you view and manage all active and completed subagents. It shows each subagent’s profile, title, status, elapsed time, and tool call count.

Foreground / Background Switching

You can move subagents between foreground and background while they’re running:
  • Background a foreground subagent: Press Ctrl+B while a foreground subagent is running. The subagent continues working in the background, and the parent agent resumes.
  • Foreground a background subagent: Open the subagent panel and press f on a running background subagent. The subagent’s output will display inline.
When you move a subagent to the background, the parent agent’s tool call has already returned, so the parent continues independently. The subagent’s result won’t feed back into the parent’s current pipeline, but you’ll be notified when it completes.

Cancelling Subagents

You can cancel a running subagent in two ways:
  1. From the subagent panel: Open the panel and press x on a running subagent.
  2. Foreground subagent: Press Ctrl+C or Esc to cancel the currently running foreground subagent.

Resuming Subagents

Cancelled, failed, or completed subagents can be resumed with a new prompt. You can ask the agent to resume a subagent, and it will continue where it left off. Resumed subagents always run in the foreground, so you can approve any tool calls that were previously denied. This is especially useful when:
  • A background subagent failed because a required tool was denied — resume it in the foreground to grant the necessary permissions.
  • A subagent completed but you want it to do additional follow-up work based on its findings.
  • A subagent was cancelled prematurely and you want it to continue.

Nesting Depth

By default, subagents cannot spawn their own subagents — only the root agent can. Subagent tools (run_subagent and read_subagent) are disabled inside a subagent to prevent unbounded nesting. However, custom subagent profiles can opt in to nested spawning by setting the max-nesting field in their frontmatter. This value overrides the default maximum depth, allowing subagents to spawn children as long as the tree stays within that limit. For example, max-nesting: 3 allows the following chain:
Nested subagents can increase cost significantly. Each level of nesting spawns additional agents with their own context windows and inference calls. Use this feature deliberately.

Custom Subagents

Custom subagents are experimental. The format, behavior, and configuration options may change in future releases.
Beyond the built-in subagent_explore and subagent_general profiles, you can define your own custom subagent profiles. Custom subagents let you create specialized workers with their own system prompts, tool restrictions, model overrides, and permissions — tailored to specific tasks in your workflow. This is also the way to get a write-capable subagent that does not run on your (possibly expensive) primary model: give it a model: and the tools it needs.

Creating a Custom Subagent

Custom subagents are defined as AGENT.md files inside a named directory under agents/. The directory name becomes the profile’s identifier.
Also supported:

AGENT.md Format

An AGENT.md file uses the same YAML frontmatter as skills, followed by the subagent’s system prompt:

Frontmatter Fields

How Custom Subagents Are Used

Once defined, custom subagent profiles appear alongside the built-in ones. The agent sees a description of each available profile and chooses the most appropriate one when spawning a subagent. You can also ask the agent to use a specific profile by name (e.g., “review this code using the reviewer subagent”). Custom subagent profiles that conflict with a built-in profile name (e.g., subagent_explore, subagent_general) are skipped with a warning.

Importing From Other Tools

Custom subagents are also imported from Claude Code’s agent format:
Claude Code agent files use tools instead of allowed-tools in their frontmatter. Both formats are supported automatically.

Examples

Read-Only Research Agent

Test Runner Agent