Installation
Quick Install (Recommended)
Section titled “Quick Install (Recommended)”The install script downloads the latest release binary for your platform:
curl -fsSL https://roborev.io/install.sh | bashThis installs to ~/.local/bin by default.
powershell -ExecutionPolicy ByPass -c "irm https://roborev.io/install.ps1 | iex"This installs to %USERPROFILE%\.roborev\bin and adds it to your PATH. Both x64 and ARM64 are supported.
The installer verifies SHA256 checksums by default. To customize installation:
| Environment Variable | Description |
|---|---|
ROBOREV_INSTALL_DIR | Custom install directory (default: %USERPROFILE%\.roborev\bin) |
ROBOREV_NO_MODIFY_PATH | Set to skip adding install dir to PATH |
ROBOREV_SKIP_CHECKSUM | Set to skip checksum verification (not recommended) |
Homebrew (macOS / Linux)
Section titled “Homebrew (macOS / Linux)”Install via Homebrew:
brew install kenn-io/tap/roborevOr tap first, then install:
brew tap kenn-io/tapbrew install roborevThis also works on Linux with Linuxbrew.
Linux Packages: DEB and RPM
Section titled “Linux Packages: DEB and RPM”Starting with 0.57.0, GitHub releases include .deb and .rpm packages for Linux amd64 and arm64. Download the package for your architecture from the GitHub Releases page, then install it locally:
# Debian / Ubuntusudo apt install ./roborev_<version>_linux_amd64.deb
# Fedora / RHELsudo dnf install ./roborev_<version>_linux_amd64.rpmThe packages install the roborev binary to /usr/bin and include user-level systemd units for the daemon.
Go Install
Section titled “Go Install”If you have Go installed:
go install go.kenn.io/roborev/cmd/roborev@latestEnsure $GOPATH/bin is in your PATH:
export PATH="$PATH:$(go env GOPATH)/bin"Build from Source
Section titled “Build from Source”git clone https://github.com/kenn-io/roborevcd roborevmake installThe make install target builds with version information embedded (e.g., v0.7.0-5-gabcdef).
For quick iteration during development:
go install ./cmd/...Verify Installation
Section titled “Verify Installation”roborev versionUpdate
Section titled “Update”Update to the latest version:
roborev updateThis downloads and replaces the current binary with the latest release.
Agent Requirements
Section titled “Agent Requirements”roborev requires at least one AI agent CLI to be installed. See Supported Agents for the full list, installation commands, and configuration options.