Install

August 4, 2026 ยท View on GitHub

The two quickest routes are in the README: Homebrew and the install script. Every other supported route is here.

Arch Linux

yay -S agent-manager-bin

AUR version

agent-manager-bin in the AUR installs the released binary and pulls in tmux and git.

mise

mise use -g ubi:YoanWai/agent-manager

Reads the GitHub release directly, so it needs no registry entry. Install tmux with your own package manager.

Go

go install github.com/YoanWai/agent-manager@latest

Requires Go 1.26.5+ and tmux 3.1+; installs to $(go env GOPATH)/bin.

Prebuilt binaries

Download from Releases (macOS and Linux, amd64/arm64).

Windows

Run inside WSL2: agent-manager lives on tmux, which is a Linux/macOS tool. In a WSL shell, install with the install script, with Homebrew, or grab the Linux binary from Releases.

Updating

The manager checks GitHub Releases once a day and shows a โ†‘ vX.Y.Z available badge in the header when a newer version is out. Press u on the update message (or enter on the version row in Settings) and the manager updates itself whatever the install source: a Homebrew, mise, or AUR install hands the terminal to that package manager's upgrade command, a direct install downloads the release and swaps the binary in place, and either way the manager restarts into the new build with every session intact. A pacman install needs an AUR helper (yay or paru) on PATH; without one the manager shows the command to run instead: yay -S agent-manager-bin.

The same commands work from a shell:

brew upgrade yoanwai/tap/agent-manager                                                    # Homebrew
curl -fsSL https://raw.githubusercontent.com/YoanWai/agent-manager/main/install.sh | sh   # Install script
mise upgrade --bump ubi:YoanWai/agent-manager                                             # mise
go install github.com/YoanWai/agent-manager@latest                                        # Go