Agent Teams Module¶
Generate a complete, coordinated AI agent team for any project — from a single project description file.
What It Does¶
Given a project description (a .json or .md brief), the module:
- Analyzes the project goal, deliverables, tools, and components
- Selects the right agent archetypes from a 4-tier taxonomy
- Renders all agent files by filling in project-specific placeholders
- Emits ready-to-use agent files for VS Code Copilot, Copilot CLI, or Claude
The generated team includes:
- 1 Orchestrator agent — coordinates all workflows
- 9 Governance agents — navigation, security, consistency, cleanup, documentation
- 2–9 Domain agents — appropriate archetypes for your deliverable type
- 1 Workstream Expert per project component — deep, component-specific knowledge
- 1 Team Builder agent — framework-native agent that can regenerate or expand the team
copilot-instructions.md— project conventions and routing rules
Framework Support¶
| Framework | Format | Handoffs | Builder Agent |
|---|---|---|---|
copilot-vscode |
.agent.md with YAML front matter |
✅ | VS Code Copilot .agent.md |
copilot-cli |
Plain .md system prompts |
❌ | CLI prompt .md |
claude |
Plain .md |
❌ | CLAUDE.md system prompt |
Install¶
AgentTeams is not yet published to PyPI. Install directly from the GitHub repository:
Or clone and install in editable mode for development:
Requires Python 3.11+. No external runtime dependencies (stdlib only).
Quick Example¶
See Getting Started for a full walkthrough, Agent-Assisted Setup to use a coding agent to create your team interactively, or CLI Reference for all flags.