AgentTool
Spawns a sub-agent to handle a specific subtask. The sub-agent runs independently with its own context, executes tools, and returns results to the parent agent. Usage pattern:- Parallelizing independent tasks (e.g., updating multiple files simultaneously)
- Delegating focused subtasks (e.g., “write tests for this function”)
- Running long-running operations without blocking the main conversation
- Parent agent calls AgentTool with a task description and optional tools list
- Sub-agent receives a fresh context with the specified tools
- Sub-agent executes the task and returns structured results
- Parent agent integrates results and continues
TeamCreateTool / TeamDeleteTool
Creates and manages teams of agents for coordinated parallel work. A team is a named group of agents that can collaborate on related tasks.TeamDeleteTool tears down a team when work is complete.
SendMessageTool
Sends a message to another agent in the current team. Used for inter-agent coordination and passing results between parallel workers. This is used internally during multi-agent workflows — you don’t invoke it directly.EnterPlanModeTool / ExitPlanModeTool
Enters and exits plan mode. In plan mode, Claude describes all the actions it plans to take (file edits, shell commands, etc.) but does not execute anything until you approve the plan. Usage pattern:/plan command.
Workflow:
- Claude generates a detailed action plan
- You review, modify, or approve the plan
- Claude executes only after your approval
EnterWorktreeTool / ExitWorktreeTool
Creates and manages git worktrees for isolated task execution. Useful for large refactors where you want changes isolated from the main working tree.SkillTool
Executes a named skill — a reusable agentic workflow defined in the skills system. Skills encapsulate multi-step processes that can be triggered by name.Multi-agent workflows are most effective for tasks with clearly separable subtasks — like updating multiple independent modules, running parallel analyses, or generating code for different layers of the stack simultaneously.