Quick Start
Install
curl -fsSL https://roborev.io/install.sh | bashpowershell -ExecutionPolicy ByPass -c "irm https://roborev.io/install.ps1 | iex"go install github.com/roborev-dev/roborev/cmd/roborev@latestEnsure $GOPATH/bin is in your PATH.
Initialize in Your Repo
cd your-reporoborev init # Install post-commit hookgit commit -m "..." # Reviews happen automaticallyroborev tui # View reviews in interactive UIWhat Happens
roborev initinstalls a post-commit hook in your repo- On each commit, the hook notifies the roborev daemon
- The daemon queues the commit for review by an AI agent
- Reviews are stored locally in SQLite
- View results with
roborev tuiorroborev show
Check the daemon status at any time:
Addressing Reviews in the TUI
One easy way to get going is to just look at reviews in the TUI and
mark them addressed with the a key to help you keep track of what
reviews you have addressed in your codebase. Press y to copy the review
to your clipboard, then paste it into your agent session. You can also use
the agent skills for supported agents.
Next Steps
- Commands - Full command reference
- Configuration - Customize roborev behavior
- TUI Guide - Master the terminal interface