Installation
Install agentty in one line, or via your distro's package manager.
One line installs it. The same line updates it. Or use your package manager — deb, rpm, AUR, Homebrew, and Scoop are all published per release.
Latest release
v0.2.8 · release notes & checksums ↗
One-line install (recommended)
curl -fsSL https://agentty.org/install.sh | sh
Detects your OS and arch, downloads the right binary from the latest release, verifies SHA256, and installs to /usr/local/bin (if root) or ~/.local/bin. Re-running the same command updates to the newest release. No apt, no brew, no version drift.
ℹNoteFlags: --prefix ~/somewhere, --version v0.2.8, --no-verify, --build (force a source build). Prebuilt binaries for Linux (x8664, i686), macOS (Apple Silicon & Intel), and Windows (x8664). On any other platform the script builds from source automatically. Works with curl or wget.
Debian / Ubuntu
curl -fsSLO https://github.com/1ay1/agentty/releases/latest/download/agentty_0.2.8_amd64.deb
sudo dpkg -i agentty_0.2.8_amd64.deb # or agentty_0.2.8_arm64.deb
Update: dpkg -i the new release's .deb.
Fedora / RHEL / openSUSE
# Fedora / RHEL / CentOS
sudo dnf install https://github.com/1ay1/agentty/releases/latest/download/agentty-x86_64.rpm
# openSUSE
sudo zypper install https://github.com/1ay1/agentty/releases/latest/download/agentty-x86_64.rpm
# or upgrade an existing install:
sudo rpm -Uvh https://github.com/1ay1/agentty/releases/latest/download/agentty-0.2.8-1.x86_64.rpm
-U is upgrade; works for the first install too.
Arch Linux
yay -S agentty-bin # or paru, pikaur, etc.
yay -Syu agentty-bin # update
Or install the release-page .pkg.tar.zst with sudo pacman -U.
Alpine
curl -fsSLO https://github.com/1ay1/agentty/releases/latest/download/agentty-x86_64.apk
sudo apk add --allow-untrusted agentty-x86_64.apk
Nix · Snap · Gentoo
Pinned manifests for these are attached to every release. Grab the one for your channel from the latest release page:
nix-env -iA agentty # Nix (attached manifest)
snap install agentty # Snap
emerge agentty # Gentoo
macOS
The one-line installer above ships prebuilt binaries for both Apple Silicon (arm64) and Intel (x86_64) and strips the Gatekeeper quarantine flag for you, so it just runs:
curl -fsSL https://agentty.org/install.sh | sh
Homebrew (once the tap lands):
brew tap 1ay1/tap
brew install agentty
brew upgrade agentty # update
Windows
The fastest way — one line in PowerShell:
irm https://agentty.org/install.ps1 | iex
Downloads agentty.exe, verifies its SHA256, installs to %LOCALAPPDATA%\agentty, and adds it to your user PATH. Or use a package manager (no SmartScreen prompt):
winget install agentty
# or
scoop bucket add 1ay1 https://github.com/1ay1/scoop-bucket
scoop install agentty
Portable single .exe (no installer): curl -L https://github.com/1ay1/agentty/releases/latest/download/agentty-windows-x86_64.exe -o agentty.exe
Raw static binaries
Fully-static, no shared-library dependencies. Drop and run:
# Linux x86_64
curl -fsSL https://github.com/1ay1/agentty/releases/latest/download/agentty-linux-x86_64 -o agentty && chmod +x agentty
# Linux i686 (32-bit)
curl -fsSL https://github.com/1ay1/agentty/releases/latest/download/agentty-linux-i686 -o agentty && chmod +x agentty
# macOS (Apple Silicon / Intel)
curl -fsSL https://github.com/1ay1/agentty/releases/latest/download/agentty-macos-arm64 -o agentty && chmod +x agentty
curl -fsSL https://github.com/1ay1/agentty/releases/latest/download/agentty-macos-x86_64 -o agentty && chmod +x agentty
Each release asset carries a published SHA256 (shown on the release page and verified automatically by the one-line installer).
✦TipBuilding from source? See Building from Source for the CMake flags and toolchain requirements.