Skip to main content

Teams

Status: πŸ§ͺ Beta

A team is a curated selection of agents β€” sourced from kits and/or individual specs β€” configured for a specific project context. Teams are stored as YAML files under .agent-teams/teams/.


Creating a Team​

Dashboard β†’ Team Manager β†’ Create Team, or use the Quick Actions card on the home page.

imagen

The wizard has three sections:

  1. Basics β€” enter the team name and description
  2. Members β€” select agents to include in this team from your available agent list. If no agents exist yet, a shortcut link to Create Agent is shown
  3. Summary β€” a live preview of the team configuration appears in the right sidebar

Click Create to save the team. The file .agent-teams/teams/<id>.yml is created automatically.


Managing Teams​

View All Teams​

Dashboard β†’ Team Manager lists all teams with their name, description, agent count, and active status. Click any team card to open it.

Edit a Team​

Dashboard β†’ Team Manager β†’ select team β†’ Edit

The edit page provides four actions:

ActionDescription
SaveWrite changes to the team YAML file
CancelDiscard unsaved changes
DeletePermanently remove this team
Set as ActiveMark this team as the active team for sync operations
imagen

Setting the Active Team​

Only one team can be active at a time. The active team determines which agents are synced to .github/agents/ and which agents register as Copilot Chat participants.

To change the active team: Dashboard β†’ Team Manager β†’ select team β†’ Edit β†’ Set as Active

The dashboard home page Stats card always shows which team is currently active.


Syncing a Team​

Sync resolves the full composition (kit defaults + project profile + team overrides) and writes the final agent markdown files to .github/agents/.

  1. Dashboard home β†’ Sync Status card shows a breakdown of pending changes:
    • create β€” new agent file will be written
    • update β€” existing agent file will be updated
    • skip β€” no changes detected, file left as-is
  2. Click Sync to apply all changes
imagen

The dashboard detects changes to YAML files automatically via file watching β€” the sync status card updates whenever you save an agent or team.

MCP Server sync​

If any agent in the team declares mcpServers, Agent Teams merges them into the project MCP config files during sync:

  • Copilot target β†’ .vscode/mcp.json (servers key)
  • Claude target β†’ .mcp.json at project root (mcpServers key)

Servers are merged by id. Existing entries are never overwritten, so project-level overrides are always preserved. See MCP Servers in the Agents reference.


Merge Strategies​

When multiple sources define the same agent field (kit default, project profile, team override), the Merge Engine resolves the conflict using one of four strategies:

StrategyBehaviour
team-priority (default)Team overrides win over profile and kit
profile-priorityProject profile wins over kit and team
kit-priorityKit defaults win β€” overrides are ignored
explicit-onlyOnly fields explicitly set at team level are used

Reference: Team YAML Format​

The dashboard writes and reads this format automatically. You can also edit the file directly in VS Code.

id: frontend-team
name: Frontend Team
description: Team focused on React and TypeScript frontend work

kits:
- id: testing-vitest
enabled: true

agents:
- id: vitest-worker
enabled: true
- id: test-orchestrator
enabled: false

overrides:
vitest-worker:
skills:
- code_analysis
- testing

Fields​

FieldRequiredDescription
idβœ…Unique team identifier (kebab-case)
nameβœ…Display name
descriptionβ€”Team purpose
kitsβ€”List of kit IDs to include, each with an enabled flag
agentsβ€”Per-agent overrides with enabled flag
overridesβ€”Field-level overrides applied to specific agents within this team