Skip to content
GitHub stars

Installation

The install script downloads the latest release binary for your platform:

Terminal window
curl -fsSL https://roborev.io/install.sh | bash

This installs to ~/.local/bin by default.

Go Install

If you have Go installed:

Terminal window
go install github.com/roborev-dev/roborev/cmd/roborev@latest

Ensure $GOPATH/bin is in your PATH:

Terminal window
export PATH="$PATH:$(go env GOPATH)/bin"

Build from Source

Terminal window
git clone https://github.com/roborev-dev/roborev
cd roborev
make install

The make install target builds with version information embedded (e.g., v0.7.0-5-gabcdef).

For quick iteration during development:

Terminal window
go install ./cmd/...

Verify Installation

Terminal window
roborev version

Update

Update to the latest version:

Terminal window
roborev update

This downloads and replaces the current binary with the latest release.

Agent Requirements

roborev requires at least one AI agent CLI to be installed:

AgentInstall Command
Codexnpm install -g @openai/codex
Claude Codenpm install -g @anthropic-ai/claude-code
Gemininpm install -g @google/gemini-cli
Copilotnpm install -g @github/copilot
OpenCodenpm install -g opencode-ai
Droidfactory.ai

roborev auto-detects installed agents and falls back in order: codex, claude-code, gemini, copilot, opencode, droid.

See Supported Agents for more details on agent configuration.