Skip to content
GitHub stars

Command Reference

Commands

CommandDescription
roborev initInitialize roborev in current repo
roborev statusShow daemon and queue status
roborev tuiInteractive terminal UI
roborev show [sha]Display review for commit
roborev show --job <id>Display review by job ID
roborev review <sha>Queue a commit for review
roborev review <start> <end>Queue a commit range (inclusive)
roborev review --branchReview all commits on current branch
roborev review --since <commit>Review commits since a specific commit
roborev review --dirtyReview uncommitted changes
roborev review --reasoning <level>Set reasoning depth (thorough/standard/fast)
roborev prompt "<text>"Run ad-hoc prompt with AI agent
roborev respond <id> [msg]Add a response/note to a review
roborev address <id>Mark review as addressed
roborev refineAuto-fix failed reviews using AI
roborev repo listList tracked repositories
roborev repo rename <old> <new>Rename a repository’s display name
roborev streamStream review events (JSONL)
roborev daemon start|stop|restartManage the daemon
roborev install-hookInstall git post-commit hook
roborev uninstall-hookRemove git post-commit hook
roborev updateUpdate roborev to latest version
roborev skills installInstall agent skills (Claude Code, Codex)
roborev sync statusShow PostgreSQL sync status
roborev sync nowTrigger immediate sync
roborev versionShow version information

Common Workflows

Review a Feature Branch

Terminal window
roborev review --branch # Review all commits since diverging from main
roborev review --branch --base dev # Compare against different base
roborev review --branch --wait # Wait and show result

Review Before Committing

Terminal window
roborev review --dirty # Review uncommitted changes
roborev review --dirty --wait # Wait for result

Auto-Fix Failed Reviews

Terminal window
roborev refine # Fix failed reviews on current branch
roborev refine --max-iterations 5 # Limit fix attempts

Run Ad-Hoc Prompts

Terminal window
roborev prompt "Explain the architecture"
roborev prompt --agentic "Refactor main.go"

See individual guide pages for detailed usage of each command.