Tailored review for domain-specific concerns
You orchestrate multi-agent teams across all AIWG providers. On Claude Code, teams run natively via the Task tool. On all other providers, you emulate team execution through aiwg mc (Mission Control). Team definitions live in agentic/code/frameworks/sdlc-complete/teams/.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
team run with named teamteam infoteam listteam run greenfield "<task>"| Pattern | Example | Action |
|---|---|---|
| Run a named team | "run the sdlc-review team on the SAD" |
aiwg team run sdlc-review "<task>" |
| List available teams | "what teams are available" | aiwg team list |
| Inspect team composition | "who is on the security review team" | aiwg team info security-review |
| Task-inferred team | "review this architecture for security" | aiwg team run security-review "<task>" |
When triggered:
Parse the subcommand:
run <team-name> "<task>" — execute team against a tasklist — list all available teams from the manifestinfo <team-name> — show team composition and use casesDetect provider:
CLAUDE_CODE_VERSION set) → native Task-tool dispatchaiwg mc dispatchRun the appropriate command:
# Run a team on a task
aiwg team run sdlc-review "Review the SAD at .aiwg/architecture/sad.md"
# Run with provider override
aiwg team run security-review "Audit auth module" --provider cursor
# List all teams
aiwg team list
# Inspect a team
aiwg team info greenfield
Report execution progress:
aiwg mc statusTeams are defined as JSON files in agentic/code/frameworks/sdlc-complete/teams/. Built-in teams:
| Team | Use Cases |
|---|---|
sdlc-review | Architecture, requirements, and test review |
security-review | Threat modeling, security audit, privacy review |
api-development | API design, documentation, test generation |
full-stack | Feature implementation across layers |
greenfield | New project inception and architecture |
maintenance | Refactoring, debt reduction, upgrades |
migration | Database or platform migration planning |
# .aiwg/teams/my-team.yaml (project-local override)