From team-overlord
Manages Claude Code agent teams: create/list teams and tasks, assign/update task statuses/owners, read agent inboxes, send messages or broadcast to teams.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-overlord:team-managementThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the team-overlord MCP tools to manage Claude Code agent teams, tasks, and messages.
Use the team-overlord MCP tools to manage Claude Code agent teams, tasks, and messages.
pending, in_progress, completed)~/.claude/teams/<name>/config.json){
"name": "team-name",
"description": "",
"createdAt": 1710000000000,
"leadAgentId": "name@team",
"leadSessionId": "uuid",
"members": [
{
"agentId": "name@team",
"name": "agent-name",
"agentType": "worker",
"model": "sonnet",
"color": "blue",
"cwd": "/path/to/project"
}
]
}
~/.claude/tasks/<team>/<id>.json){
"id": "1",
"subject": "Task title",
"description": "Detailed description",
"status": "pending|in_progress|completed",
"owner": "agent-name",
"blocks": ["2"],
"blockedBy": []
}
~/.claude/teams/<team>/inboxes/<agent>.json)Array of messages:
{
"from": "sender-name",
"text": "message content",
"timestamp": "ISO 8601",
"read": false,
"summary": "optional preview",
"color": "optional badge color"
}
create_team("my-team", "Building feature X")create_task("my-team", "Implement auth", "Add JWT authentication...")update_task("my-team", "1", owner="researcher")list_teams() — overview of all teamslist_tasks("my-team", "in_progress") — what's being worked onread_inbox("my-team", "researcher") — check agent's messagessend_message("my-team", "researcher", "Please prioritize the auth task")broadcast_message("my-team", "Stand down — merging to main now")Each prompt includes a <team-context> block showing current team state (members, statuses, task counts). Use the tools to act on this state — the context block is read-only and reflects the latest disk state.
/spawn and /kill commands for those operations.~/.claude/. Changes are immediately visible to the TUI via filesystem watching.npx claudepluginhub und3rf10w/claude-litter --plugin team-overlordOrchestrates Claude Code agent teams: spawn teammates, assign tasks with dependencies, manage communication via messages or broadcasts, configure modes, and set quality gate hooks.
Orchestrates Claude Code agent teams for parallel multi-agent workflows on complex tasks using TeamCreate, SendMessage, TaskUpdate, and shared task lists. Enable with --enable-teams flag.
Coordinates multiple Claude Code instances as agent teams for workflows needing inter-agent communication. Covers TeamCreate, SendMessage types, task coordination, hooks, and orchestration patterns.