Installation
Agent Teams is distributed as a desktop app for macOS, Windows, and Linux.
Shortest path
- Download the build for your platform below
- Launch the app - start with the free model with no auth or connect provider auth from the UI
- Start the quickstart to create your first team
Desktop app startup: run pnpm dev for the Electron app. Do not start the browser/web dev mode for normal use.
Download builds
Use the download page or the latest GitHub release when you want the packaged app:
- macOS Apple Silicon:
.dmg - macOS Intel:
.dmg - Windows:
.exe - Linux:
.AppImage,.deb,.rpm, or.pacman
Windows SmartScreen
Unsigned or newly published open-source apps can trigger SmartScreen. If you trust the release source, choose More info and then Run anyway.
Requirements
The packaged app is designed for zero-setup onboarding. You can start with the free model with no auth - no registration, API keys, or credit card. If you want more models, the app guides runtime detection and provider authentication from the UI.
For paid or account-backed models, connect at least one provider:
| Provider | Access method |
|---|---|
| Claude (Anthropic) | Claude Code CLI login or API key |
| Codex (OpenAI) | Codex CLI login or API key |
| Gemini (Google) | Google ADC, Gemini CLI, or API key |
| OpenCode | Included free model with no auth, or API key for a supported backend (e.g. OpenRouter) |
INFO
Gemini is available as a supported provider path. See Providers and runtimes for auth options and current status across all providers.
For source development, you also need:
| Tool | Version |
|---|---|
| Node.js | 24.16.0 LTS |
| pnpm | 10+ |
On macOS, official Node.js 24 prebuilt binaries require macOS 13.5+.
Run from source
git clone https://github.com/777genius/agent-teams-ai.git
cd agent-teams-ai
pnpm install
pnpm devpnpm dev starts the desktop Electron app with hot reload. This is the default development target — do not start a browser web dev server for normal development. The browser path lacks the full desktop IPC, terminal, provider auth, and team lifecycle behavior.
The main branch carries the latest stable development. Switch to feature branches only if you need a specific unreleased change.
Verify the setup
After installing, confirm the build is healthy:
# Check that the desktop app compiles and starts
pnpm typecheck
# Verify the VitePress documentation site builds
pnpm --dir landing docs:buildIf pnpm typecheck reports type errors, check for a newer version of dependencies or pinned TypeScript. If pnpm --dir landing docs:build fails, inspect landing/product-docs/ for syntax errors in markdown or config.
If you are editing these docs, run the build to verify your changes:
pnpm --dir landing docs:buildAuto-updates
The packaged app checks for updates automatically on launch and periodically while running. When an update is available, the app prompts you to download and install it. You can also check manually from the app menu.
TIP
Auto-updates are not available when running from source. Pull the latest changes and rerun pnpm install when dependencies change.
Updating from source
If you run from source, pull the main branch and rerun install when dependencies change:
git pull
pnpm installAfter updating, verify the build and docs:
pnpm typecheck
pnpm --dir landing docs:buildAlways use pnpm dev (Electron) — not the browser dev server — for normal development.
Next steps
- Quickstart — from install to first running team
- Runtime setup — provider auth and model selection per runtime
- Create a team — recommended team shapes and brief writing
For contributors
- AGENTS.md — repo navigation and architecture pointers
- CLAUDE.md — working conventions and project rules
- AGENT_CRITICAL_GUARDRAILS.md — hard implementation guardrails
