Multi-agent & Sub-agents in OpenClaw

From the OpenClaw cheat sheet ยท Sub-agents ยท verified Jul 2026

Multi-agent & Sub-agents

Spawn child agents, steer them, and configure multi-agent routing.

bash
# In chat โ€” the agent spawns sub-agents automatically for complex tasks
# You can also manage them with slash commands:

/subagents list              List running sub-agents
/subagents spawn             Spawn a new sub-agent
/steer <id> "focus on X"    Redirect a running sub-agent
/kill <id>                   Kill a specific sub-agent
/kill all                    Kill all sub-agents
/agents                      List thread-bound agents
๐Ÿ’ก Sub-agents run in parallel โ€” the main agent can delegate research, coding, etc. to child agents
โšก /steer redirects a running sub-agent without killing it โ€” saves context and progress
๐Ÿ“Œ Each named agent (openclaw agents add) has its own workspace, SOUL.md, and memory
๐ŸŸข Use allowAgents: ["*"] to let the agent spawn any sub-agent, or restrict to specific names
sub-agentsmulti-agentroutingdelegation
Back to the full OpenClaw cheat sheet