teams

Solid

Organize AI coding agents into teams that collaborate on a shared task. Create teams, add teammates, start them, monitor progress, and collect results. Use this skill when you need parallel agent execution. For single-agent dispatch, use `agents run` instead.

AI & Automation 11 stars 6 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 78/100

Stars 20%
36
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Teams Skill Organize AI coding agents into teams for parallel collaboration. This skill teaches you how to use the `agents teams` CLI. ## Single Agent vs Teams - **Single agent**: Use `agents run <agent> "prompt" --mode edit` for one-off tasks - **Multiple agents**: Use `agents teams` when you need parallel execution ## Quick Start ```bash # Create a team agents teams create my-feature # Add teammates agents teams add my-feature claude "Implement the auth middleware" --name auth agents teams add my-feature codex "Build the login UI" --name frontend # Start the team agents teams start my-feature --watch ``` ## Commands | Command | Description | Example | |---------|-------------|---------| | `create` | Start a new team | `agents teams create my-team` | | `add` | Add a teammate | `agents teams add my-team claude "Task" --name role` | | `start` | Launch pending teammates | `agents teams start my-team --watch` | | `status` | Check who's working | `agents teams status my-team` | | `logs` | Read teammate output | `agents teams logs my-team frontend` | | `remove` | Remove a teammate | `agents teams remove my-team frontend` | | `disband` | Stop all and remove | `agents teams disband my-team` | | `doctor` | Check installed agents | `agents teams doctor` | ## DAG Dependencies Use `--after` to create dependencies: ```bash # Backend first agents teams add my-feature claude "Build API" --name backend # Frontend waits for backend agents teams add my-feature codex "Build UI" ...

Details

Author
phnx-labs
Repository
phnx-labs/agents-cli
Created
3 months ago
Last Updated
today
Language
TypeScript
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category