agent-team

Coordinate specialized agents to decompose tasks and execute work in parallel.

35|Updated Feb 15, 2026
One-click install
npx skills add https://github.com/sean-sunagaku/claude-code-plugin --skill agent-team-sean-sunagaku
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agent-team
Source: https://github.com/sean-sunagaku/claude-code-plugin/tree/main/agent-team/skills/agent-team
Command: npx skills add https://github.com/sean-sunagaku/claude-code-plugin --skill agent-team-sean-sunagaku

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Orchestrates multiple agents to tackle complex tasks by decomposing work, assigning optimal subagents, and coordinating parallel execution.

Core Features & Use Cases

  • Team creation and spawning: initialize a named team and spawn specialized agents (Explore, Plan, frontend-dev, backend-dev, tester, etc.) with pre-loaded project context.
  • Task orchestration and parallelism: decompose tasks into independent sub-tasks and run them concurrently while managing dependencies.
  • Communication and coordination: use SendMessage and a shared task list to track progress and coordinate across agents.

Quick Start

Create a team named 'feature-x' and spawn parallel tasks across backend-dev and frontend-dev to implement the feature.

Frequently Asked Questions about agent-team

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multiple agents to run tasks in parallel?

Multi-agent parallel execution is coordinated by creating a named team and spawning specialized subagents to execute sub-tasks concurrently. It uses a shared task list and SendMessage to track progress and manage dependencies across backend, frontend, research, and testing domains.

What is multi-agent orchestration for complex software engineering tasks?

Multi-agent orchestration decomposes complex multi-step tasks and assigns optimal built-in or project-specific subagents across domains like backend, frontend, research, and testing. It coordinates parallel execution, manages blocking dependencies, and synchronizes distributed software engineering work.

Can I use custom project-specific agents with a multi-agent team workflow?

Yes, multi-agent team workflows support custom project-specific agents defined under the .claude/agents/ directory. These integrate alongside built-in agent types like Explore, Plan, Bash, code-simplifier, and general-purpose to handle specialized parallel sub-tasks.

How do I manage dependencies and communication between parallel subagents?

Dependencies and communication between parallel subagents are managed using SendMessage and a shared task list. The TeamCreate and TaskCreate workflow provides blocking mechanisms and run_in_background options to coordinate execution and synchronize progress across agents.

When should I use parallel multi-agent coordination instead of a single agent?

Parallel multi-agent coordination is suited for complex multi-step tasks that benefit from distributed subagents across backend, frontend, research, and testing domains. It applies when tasks require concurrent execution, blocking dependency management, and specialized project context handling.