Skip to content
MCP ThesaurusMCP Thesaurus

Teamwork

CommunityAdequate58/100Claim

updated 4mo ago

Run a structured multi-agent pipeline where team-lead orchestrates all stages and delegates implementation to specialist agents.

SourceWebsiteDocs

What can you do with Teamwork?


name: teamwork description: Use for explicit teamwork orchestration requests (/teamwork:task, /teamwork:mapping-repo, or "use teamwork"). Delegates to team-lead for plan-led execution with gated review and verification. allowed-tools: Bash, Agent

Teamwork Skill

Run a structured multi-agent pipeline where team-lead orchestrates all stages and delegates implementation to specialist agents.

Triggers

/teamwork:task <description>
/teamwork:mapping-repo
/teamwork:mapping-repo --update

Natural language trigger:

Use teamwork to implement <feature>

Setup / Check

  • Claude slash command: /teamwork:setup
  • CLI/Codex fallback: bash scripts/setup.sh --repo / bash scripts/setup.sh --check

Pipeline

team-lead
  β”œβ”€β”€ planner-lead      β†’ dispatches researcher/designer/linter, writes plan
  β”‚     β”œβ”€β”€ researcher(s) (parallel when useful)
  β”‚     └── designer (only when design output required)
  β”‚     └── linter (layered dependency lint contract)
  β”œβ”€β”€ plan-reviewer  β†’ technical plan gate
  β”œβ”€β”€ pm             β†’ product plan gate + delivery supervision
  β”œβ”€β”€ fullstack-engineer β†’ execute tasks
  β”œβ”€β”€ verifier       β†’ command-level verification evidence
  β”œβ”€β”€ final-reviewer β†’ code review + specialty review coalition
  β”‚     β”œβ”€β”€ security-reviewer
  β”‚     β”œβ”€β”€ devil-advocate
  β”‚     β”œβ”€β”€ a11y-reviewer
  β”‚     β”œβ”€β”€ perf-reviewer
  β”‚     └── user-perspective
  └── git-monitor    β†’ optional commit/PR/CI monitoring

Stage Model

Default (standard):

plan -> plan-review -> execute -> verify -> pm-review -> final-review -> ship

Gate policy:

  • Plan gate passes only when plan-reviewer and pm(plan-gate) are both pass.
  • Delivery gate uses verifier evidence plus pm(delivery-gate) supervision.
  • Final gate is owned by final-reviewer consolidated verdict.

Workflow

  1. Validate plugin readiness (Codex/Copilot optional).
  2. Read .claude/team.md for routing/review/verification/model overrides.
  3. Delegate immediately to team-lead.
  4. team-lead runs plan-led pipeline and returns evidence.
  5. Report outcome only; never implement directly in this skill entry.

Hard Constraints

  • Skill entry must not edit files.
  • Always delegate to team-lead for real work.
  • Require plan gate, verification, PM delivery gate, and final-review gate unless user explicitly overrides.
  • Enforce bounded repair loops (single automatic repair budget).
  • Re-run gates after any code-changing repair.
  • Never commit .claude/pipeline-state.json.

Shipped Agents

  • team-lead.md
  • planner-lead.md
  • linter.md
  • researcher.md
  • designer.md
  • plan-reviewer.md
  • pm.md
  • fullstack-engineer.md
  • verifier.md
  • final-reviewer.md
  • git-monitor.md
  • security-reviewer.md
  • devil-advocate.md
  • a11y-reviewer.md
  • perf-reviewer.md
  • user-perspective.md