team-orchestration

Coordinate persistent agents for implementation tasks with code review.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/WesleyMFrederick/cc-workflows-plugin --skill team-orchestration-wesleymfrederick
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: team-orchestration
Source: https://github.com/WesleyMFrederick/cc-workflows-plugin/tree/main/src-claude/skills/team-orchestration
Command: npx skills add https://github.com/WesleyMFrederick/cc-workflows-plugin --skill team-orchestration-wesleymfrederick

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Orchestrates multiple persistent agents to perform implementation tasks with code review, ensuring a clear separation between planning and execution.

Core Features & Use Cases

  • Team orchestration: Create a team, define tasks with dependencies, and spawn agents for coder, reviewer, and committer.
  • Message-driven routing: Route agent verdicts (APPROVED / FIX_REQUIRED) and unblock subsequent tasks.
  • Lifecycle management: Manage fix loops, shutdown sequences, and complete cleanup after reporting results.
  • Pure delegation: Orchestrator never performs coding, reviewing, or committing; all work is delegated to agents.

Quick Start

Describe the task you want to accomplish and let Team Orchestration assemble a team and tasks.

Frequently Asked Questions about team-orchestration

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

FAQPage Schema
How do I coordinate multiple agents for code review and implementation tasks?

Multi-agent coordination for code review uses a TeamCreate-driven workflow to spawn persistent coder, reviewer, and committer agents. These agents collaborate through inter-agent messages to deliver implementation tasks rather than relying on manual handoffs.

What is task decomposition with dependencies in a multi-agent orchestration workflow?

Task decomposition with dependencies splits an implementation request into ordered subtasks routed to specific agents. The orchestrator manages these dependencies, unblocking subsequent tasks only after previous agent verdicts like APPROVED or FIX_REQUIRED are received.

How do I set up a coder, reviewer, and committer team for persistent agent collaboration?

To set up a coder, reviewer, and committer team, describe your implementation task and let the orchestrator assemble the team. It handles agent spawning, message routing for verdicts, fix loops, and complete shutdown cleanup after reporting results.

Does the orchestrator agent write code or perform reviews directly?

The orchestrator never performs coding, reviewing, or committing directly. It enforces pure delegation, meaning all actual implementation work and code review tasks are delegated to the spawned persistent agents through message-driven routing.

How do fix loops work when a reviewer agent rejects code?

When a reviewer agent rejects code with a FIX_REQUIRED message, the orchestrator manages a fix loop by routing the verdict back to the coder agent. This cycle continues until the code is approved, at which point dependencies unblock and the committer agent proceeds.

When should I use message-driven agent orchestration instead of manual task handoffs?

Message-driven agent orchestration is ideal for multi-role development scenarios requiring persistent coder, reviewer, and committer collaboration. Use it when you need clear separation between planning and execution, automatic dependency management, and structured lifecycle shutdown.