agents-clilisted
Install: claude install-skill phnx-labs/agi-cli
# agents CLI
`agents` (alias `ag`) is one control plane for every AI coding-agent harness —
Claude Code, Codex, Cursor, Antigravity (Gemini), Grok, Kimi, OpenCode, Droid,
OpenClaw, and more. Install it once and it manages versions, accounts, parallel
runs, and cross-machine sessions for all of them.
```bash
npm install -g @phnx-labs/agents-cli # provides `agents` and `ag`
agents --version # 1.22.58
```
Every recipe below is a real command. Run `agents <group> --help` for the full
flag list — each group ships a workflow-first help block, not a flag dump.
---
## Run multiple coding agents in parallel
`agents teams` runs several agents at once on one shared task, each isolated in
its own git worktree, wired into a dependency DAG.
```bash
# 1. Create a team
agents teams create pricing-page
# 2. Add teammates — different harnesses, run in parallel, each in its own worktree
agents teams add pricing-page claude "Rewrite the /v2/pricing endpoint" --name backend
agents teams add pricing-page codex "Build the /pricing route, three-tier layout" --name frontend
# 3. DAG dependency — QA waits for BOTH to finish (--after)
agents teams add pricing-page claude "Run the Playwright suite, fix flakes" --name qa --after backend,frontend
# 4. Start everyone (respects --after) and watch live
agents teams start pricing-page --watch
# 5. Check in without re-reading everything
agents teams status pricing-page
# 6. Wind down when shipped
agents teams disband pricin