team-build

Decompose software epics into parallel subtasks with explicit file scopes.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/benediktms/overmind --skill team-build-benediktms
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: team-build
Source: https://github.com/benediktms/overmind/tree/main/cli/claudecode-plugin/skills/team-build
Command: npx skills add https://github.com/benediktms/overmind --skill team-build-benediktms

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Orchestrates a multi-agent workflow to decompose large software epics into independently claimable subtasks, assign explicit file ownership, and ensure safe, integrated delivery.

Core Features & Use Cases

  • Automates epic decomposition into discrete subtasks with explicit file scopes and ownership.
  • Spawns specialized builder subagents (drone, guardian, scribe, weaver, evolver) to execute tasks in parallel while respecting dependencies and quality gates.
  • Verifies integration through build, typecheck, and tests before merge, reducing risk in large epics.

Quick Start

Describe the epic and invoke the build-team protocol to decompose the epic into subtasks, assign file scopes, and spawn builder teammates.

Frequently Asked Questions about team-build

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

FAQPage Schema
How do I decompose a large software epic into parallel subtasks?

Multi-agent software orchestration coordinates parallel builder subagents to execute subtasks while respecting dependencies and quality gates. It assigns explicit file ownership and verifies integration through build, typecheck, and tests before merge.

How do I coordinate parallel work across multiple Claude Code agents?

Parallel work coordination uses a shared task list to manage independently claimable subtasks across Claude Code agents. Specialized builder subagents execute tasks in parallel while respecting dependency ordering and quality gates.

Do I need the agent teams flag enabled to run parallel builder subagents?

Yes, the CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS flag must be set to enable parallel builder subagents. You also need explicit per-subtask file scopes and addBlockedBy entries for genuine task ordering.

What is the best way to ensure safe integration when splitting a codebase across parallel agents?

Safe integration requires explicit per-subtask file scopes to prevent conflicts, addBlockedBy for genuine ordering, and a final end-to-end integration check running builds, typechecks, and tests before merging the parallel work.

When should I not use parallel agent teams for epic decomposition?

Parallel agent teams are not suited for software epics that cannot decompose into independently claimable subtasks with clear file scopes. Avoid this approach if dependency ordering cannot be managed through addBlockedBy or if end-to-end integration checks are not feasible.