Skip to content
GitHub stars

Quick Start

Install

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

Initialize in Your Repo

Terminal window
cd your-repo
roborev init # Install post-commit hook
git commit -m "..." # Reviews happen automatically
roborev tui # View reviews in interactive UI

What Happens

  1. roborev init installs a post-commit hook in your repo
  2. On each commit, the hook notifies the roborev daemon
  3. The daemon queues the commit for review by an AI agent
  4. Reviews are stored locally in SQLite
  5. View results with roborev tui or roborev 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