From agent-teams
Decomposes features into parallel agent work streams with file ownership and dependencies, spawns team, creates git branch, and monitors integration. Supports team-size, branch, plan-first options.
How this command is triggered — by the user, by Claude, or both
Slash command
/agent-teams:team-feature <feature-description> [--team-size N] [--branch feature/name] [--plan-first]The summary Claude sees in its command listing — used to decide when to auto-load this command
# Team Feature Orchestrate parallel feature development with multiple implementer agents. Decomposes features into work streams with strict file ownership, manages dependencies, and verifies integration. ## Pre-flight Checks 1. Verify `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` is set 2. Parse `$ARGUMENTS`: - `<feature-description>`: description of the feature to build - `--team-size N`: number of implementers (default: 2) - `--branch`: git branch name (default: auto-generated from feature description) - `--plan-first`: decompose and get user approval before spawning ## Phase 1...
Orchestrate parallel feature development with multiple implementer agents. Decomposes features into work streams with strict file ownership, manages dependencies, and verifies integration.
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 is set$ARGUMENTS:
<feature-description>: description of the feature to build--team-size N: number of implementers (default: 2)--branch: git branch name (default: auto-generated from feature description)--plan-first: decompose and get user approval before spawningDecompose the feature into work streams:
If --plan-first is set:
Present the decomposition to the user:
## Feature Decomposition: {feature}
### Stream 1: {name}
Owner: implementer-1
Files: {list}
Dependencies: none
### Stream 2: {name}
Owner: implementer-2
Files: {list}
Dependencies: blocked by Stream 1 (needs interface from {file})
### Integration Contract
{shared types/interfaces}
Wait for user approval before proceeding
If user requests changes, adjust decomposition
--branch specified, use Bash to create and checkout the branch:
git checkout -b {branch-name}
Teammate tool with operation: "spawnTeam", team name: feature-{timestamp}team-lead agent to coordinateTask tool to spawn a team-implementer:
name: implementer-{n}subagent_type: "agent-teams:team-implementer"prompt: Include owned files, interface contracts, and implementation requirementsTaskCreate for each work stream:
TaskUpdate to set blockedBy relationships for dependent streamsTaskUpdate (set owner)TaskList for progressAfter all tasks complete:
Present feature summary:
## Feature Complete: {feature}
Files modified: {count}
Streams completed: {count}/{total}
Tests: {pass/fail}
Changes are on branch: {branch-name}
Send shutdown_request to all teammates
Call Teammate cleanup
npx claudepluginhub p/helios516-agent-teams-plugins-agent-teams9plugins reuse this command
First indexed Feb 6, 2026
Showing the 6 earliest of 9 plugins
/team-featureSplits a feature description into parallel work streams with file ownership boundaries, spawns implementer agents, manages task dependencies, and coordinates integration.
/orchestrateOrchestrates parallel task execution using Agent Teams API — parses project domain, extracts tasks from prompt_plan.md, analyzes dependencies, and spawns team members for concurrent work. Supports --type, --parallel, and --dry-run flags.
/implementImplements features using parallel subagents with scope control, reflection, and effort-aware phase scaling. Supports model override and resume from checkpoints.
/sc-parallel-worktree-teamDecomposes specified work into parallel streams, creates isolated git worktrees per stream, symlinks dependencies, and spawns agent teams in tmux for simultaneous execution.
/swarmDecomposes a task into parallel subtasks and coordinates multiple AI agents to execute them. Supports fast, auto, and confirm-only planning modes.
/buildBuilds a new feature end-to-end for backend, frontend, or full-stack with auto-detection, through spec, design, workspace, implementation, review, and ships merged PR using git worktrees.