Installation
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.
One-line install (recommended)
curl -fsSL https://agentty.org/install.sh | shDetects 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.1.0, --no-verify, --build (force a source build). Prebuilt binaries for Linux (x86_64, i686), macOS (Apple Silicon & Intel), and Windows (x86_64). 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.1.0_amd64.deb
sudo dpkg -i agentty_0.1.0_amd64.deb # or agentty_0.1.0_arm64.debUpdate: dpkg -i the new release's .deb.
Fedora / RHEL / openSUSE
sudo rpm -Uvh https://github.com/1ay1/agentty/releases/latest/download/agentty-0.1.0-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 # updateOr install the release-page .pkg.tar.zst with sudo pacman -U.
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 | shHomebrew (once the tap lands):
brew tap 1ay1/tap
brew install agentty
brew upgrade agentty # updateWindows
The fastest way — one line in PowerShell:
irm https://agentty.org/install.ps1 | iexDownloads 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 agenttyPortable 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 agenttyEach 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.