agent-ecosystem/landing/product-docs/guide/installation.md
2026-05-26 19:46:41 +03:00

4.9 KiB
Raw Permalink Blame History

title description
Installation Agent Teams Docs Download and install Agent Teams for macOS, Windows, or Linux. Covers packaged builds, source setup, auto-updates, and requirements.

Installation

Agent Teams is distributed as a desktop app for macOS, Windows, and Linux.

::: tip Shortest path

  1. Download the build for your platform below
  2. Launch the app - start with the free model with no auth or connect provider auth from the UI
  3. 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

::: warning 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 dev

pnpm 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:build

If 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:build

Auto-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 install

After updating, verify the build and docs:

pnpm typecheck
pnpm --dir landing docs:build

Always use pnpm dev (Electron) — not the browser dev server — for normal development.

Next steps

For contributors