Installation
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)
Install via Homebrew:
brew install roborev-dev/tap/roborevOr tap first, then install:
brew tap roborev-dev/tapbrew install roborevThis also works on Linux with Linuxbrew.
Go Install
If you have Go installed:
go install github.com/roborev-dev/roborev/cmd/roborev@latestEnsure $GOPATH/bin is in your PATH:
export PATH="$PATH:$(go env GOPATH)/bin"Build from Source
git clone https://github.com/roborev-dev/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
roborev versionUpdate
Update to the latest version:
roborev updateThis downloads and replaces the current binary with the latest release.
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.