From agent-teams
Splits a feature description into parallel work streams with file ownership boundaries, spawns implementer agents, manages task dependencies, and coordinates integration.
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}
TeamCreate tool to create the team with team_name: "feature-{timestamp}" and descriptionteam-lead agent to coordinateAgent 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 TeamDelete to remove team resources
npx claudepluginhub onekr-billy/agents --plugin agent-teams67plugins reuse this command
First indexed Apr 14, 2026
Showing the 6 earliest of 67 plugins
/team-featureSplits a feature description into parallel work streams with file ownership boundaries, spawns implementer agents, manages task dependencies, and coordinates integration.
/sc-parallel-worktree-teamDecomposes work into parallel streams and executes them simultaneously using isolated git worktrees and tmux-based agent teams.
/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.
/swarmDecomposes a task into parallel subtasks and coordinates multiple agents to execute them in a swarm. Supports planning modes, context sharing, and git workflow integration with feature branches and PRs.
/full-taskOrchestrates a multi-agent team through full development workflow: planning (architect, PM, researcher) → user approval → development (developer, testers, reviewer, researcher) → report generation. Automates branch creation and team lifecycle.