Devteam banner
agent-era agent-era

Devteam

Development community

Description

Run a team of local coding agents in your terminal. Launch multiple Claude Code, Codex or Gemini agents, switch between them, review their changes and add comments, and push PRs all from one streamlined terminal UI. An exercise to push how fast development can happen with multiple parallel agents. Mostly vibe-coded

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

DevTeam CLI (@agent-era/devteam)

Run a team of local coding agents in your terminal. Launch multiple Claude Code, Codex or Gemini agents, switch between them, review their changes and add comments, and push PRs all from one streamlined terminal UI. An exercise to push how fast development can happen with multiple parallel agents. Mostly vibe-coded

![Screenshot](docs/screenshot.png)

Install

Prerequisites: Node.js 18+ and tmux installed and on your PATH

Global install:

npm i -g @agent-era/devteam

This installs the `devteam` command.

Or run the provided installer script from a clone of this repo:

./install.sh

Usage

Run the TUI in the top-level directory that you keep your git projects in:

cd ~/projects
devteam

Or point it at a directory explicitly:

devteam --dir /path/to/projects
# or
PROJECTS_DIR=/path/to/projects devteam

For best results:

  • run in a VM and give your agents broad permissions within that sandbox
  • give them a dedicated GitHub account that they can use to create PRs automatically
  • add some guidelines in CLAUDE.md / AGENTS.md to add tests and make a PR for each feature

Features

Use DevTeam to manage a team of agents working in parallel on your projects:

  • Kick off multiple agents working on features in parallel (uses git worktrees)
  • See their code changes with a built-in diff viewer, and add comments that are sent to them to address
  • Agents asking for your input are highlighted in the UI so you can unblock them
  • See how far each agent is: diff line counts, whether the feature is pushed, GitHub PR checks and status
  • Run your program or server in each worktree so you can try out the changes easily.
  • Choose Claude Code, Codex or Gemini CLI to work on each feature

Repository

Development

  • Build: npm run build
  • Run: npm run cli -- --dir
  • Test: npm test