auto-agents Help

Getting started

This guide gets you from a fresh machine to your first successful auto-agents run.

Prerequisites

Before installing auto-agents, ensure you have:

  • gh authenticated (gh auth login).

  • At least one supported agent CLI available on PATH.

  • Git configured for repository operations.

Supported agent names for --agent include:

  • claude

  • cline

  • codex

  • copilot

  • cursor

  • gemini

  • junie

  • xai

Install from the release script

curl -fsSL https://raw.githubusercontent.com/geoffsee/auto-agents/master/install.sh | bash

The installer auto-detects OS/architecture and installs to ~/.local/bin by default.

To change the destination path:

AUTO_AGENTS_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/geoffsee/auto-agents/master/install.sh | bash

Verify installation

auto-agents --help

Run your first command

Launch the desktop app:

auto-agents

Run a workflow from terminal:

auto-agents sprint-planning

Preview available presets:

auto-agents presets

First configuration checkpoint

Create a minimal auto-agents.toml in your repository root only if you need to override defaults. For many projects, no config file is required.

Example:

workflow_preset = "default" [agent_models] codex = "gpt-5-codex"

For full options and bot setup details, see Configuration reference.

Common first-run issues

gh is not authenticated

Run:

gh auth login

Agent binary is missing

Install and authenticate your selected agent CLI, then re-run with --agent <name>.

Need non-destructive preview

Use:

auto-agents --dry-run <command>

to inspect planned behavior without performing supported side effects.

16 July 2026