Create a collaborative agent team with roles, personalities, and skills. Use when: user says "create team", "build a team", "新建团队", "创建团队", "组建团队", "搭建团队". Do NOT use for managing existing teams or assigning tasks to teams.
Interactive workflow for building a collaborative agent team.
A Team is an installable package — it bundles multiple OpenClaw Agents, each with its own identity (agent.md), personality (soul.md), and skill dependencies (skills.json), all self-contained and portable.
~/.agents/teams/{team-name}/
├── team.md # Team metadata + positioning
└── agents/
├── manager/ # MANDATORY — coordinator, never does work itself
│ ├── agent.md
│ ├── soul.md
│ └── skills.json # Skill dependencies (empty for coordinator)
├── {agent-slug}/
│ ├── agent.md # Agent identity + description
│ ├── soul.md # Personality, tone, working style
│ └── skills.json # This agent's skill dependencies with install sources
└── ...
---