Use cases
Shared workspace, different expertiseOne agent handles the thread until the user’s goal clearly matches another agent’s description—for example billing vs. technical support—then hands off by calling that peer. Splitting concerns
Agents stay small and focused. Several agents can each link to the others they need, symmetrically, instead of a single “top” controller. Intent-based routing
An intake-style agent classifies what the user wants and calls the workspace agent whose description best matches—without a separate orchestration service.
Selecting agents
Choose from other agents in the current workspace. You can add multiple.Adding agents here automatically switches the evaluation strategy to
react — the same as adding MCP tools. Other agents are surfaced as callable actions inside that reasoning loop; that is wiring, not a parent/child relationship between agents.What the model sees for each linked agent
Each linked agent is presented to this agent as a callable capability with:- Name — slug-style identifier the model uses when calling it
- Description — taken from the agent’s Profile
Mixing MCP tools and agents
You can combine MCP tools and other agents on the same agent. The model chooses among those capabilities from the same loop—tools and peer agents are options, not tiers of control.Next steps
MCP Tools
Add external tool integrations alongside agent calls.
Profile
Write agent descriptions that make peer calls easy to choose correctly.