AgileFlow

/team:start

PreviousNext

Start a team from a predefined or custom template

/team:start

Start a multi-agent team from a template. The team lead coordinates specialized teammates working in parallel on complex tasks.

Quick Start

/agileflow:team:start fullstack

How It Works

  1. Detects whether Claude Code native Agent Teams is enabled (CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS)
  2. Loads the specified template from .agileflow/teams/
  3. In native mode: operates as team lead in delegate mode, spawning independent teammate sessions with file-locking
  4. In fallback mode: uses the orchestrator subagent to coordinate experts within a single session

Available Templates

TemplateDescriptionTeammates
fullstackFull-stack feature developmentAPI builder, UI builder, Testing validator
code-reviewMulti-perspective code reviewCode reviewer, Security, Performance
builder-validatorPaired build and verifyAPI + API validator, UI + UI validator
code-logicDeep logic analysisEdge, Flow, Invariant, Race, Type analyzers

Usage

# Start a full-stack team
/agileflow:team:start fullstack
 
# Start a code review team
/agileflow:team:start code-review
 
# Start a custom team
/agileflow:team:start my-custom-template

Quality Gates

Each template includes quality gate configuration that enforces standards before work is accepted:

  • Tests passing: Required before teammate can go idle
  • Lint passing: Configurable per template
  • Type checking: Optional per template
  • Validator approval: Required for builder-validator teams
CommandPurpose
/team:listList available templates
/team:statusMonitor team progress
/team:stopStop a running team
/team:guideFull migration guide