A CLI tool that reviews code diffs using LLMs. Point it at a local repo or a GitHub PR URL. It sends the diff to Claude or GPT-4o and outputs a structured review with severity ratings, file references, and line numbers.
pip install prrevRequires Python 3.10+.
# review uncommitted changes
prrev .
# review only staged changes
prrev . --staged
# review a specific commit
prrev . --commit abc123
# review a commit range
prrev . --range abc123..def456
# review a GitHub PR
prrev https://github.com/user/repo/pull/42
# post review as inline PR comments
prrev https://github.com/user/repo/pull/42 --post
# write review to a markdown file
prrev . --output review.md
# fail in CI if there are warnings or worse
prrev . --fail-on warningSet API keys as environment variables:
export ANTHROPIC_API_KEY=YOUR_ANTHROPIC_KEY
export OPENAI_API_KEY=YOUR_OPENAI_KEY
export GITHUB_TOKEN=YOUR_GITHUB_TOKENOr use a config file at ~/.config/prrev/config.toml:
[llm]
provider = "anthropic"
model = "claude-haiku-4-5"
anthropic_api_key = "YOUR_ANTHROPIC_KEY"
[github]
token = "YOUR_GITHUB_TOKEN"
[review]
max_items = 20You can also put a .prrev.toml in your repo root for per-project settings. API keys are ignored in repo config for security. They only load from env vars or the global config.
Precedence: CLI flags > env vars > repo config > global config > defaults.
# use claude (default)
prrev . --provider anthropic
# use gpt-4o
prrev . --provider openai
# override the model
prrev . --provider anthropic --model claude-opus-4-8Anthropic:
| Model | ID |
|---|---|
| Claude Opus 4.8 | claude-opus-4-8 |
| Claude Opus 4.7 | claude-opus-4-7 |
| Claude Opus 4.6 | claude-opus-4-6 |
| Claude Sonnet 4.6 | claude-sonnet-4-6 (default) |
| Claude Haiku 4.5 | claude-haiku-4-5 |
OpenAI:
| Model | ID |
|---|---|
| GPT-4o | gpt-4o (default) |
| GPT-4o mini | gpt-4o-mini |
| GPT-4 Turbo | gpt-4-turbo |
| o1 | o1 |
| o1-mini | o1-mini |
The diff is sent to the LLM using each provider's structured output mechanism: Anthropic's tool use and OpenAI's response_format with a JSON schema. This guarantees the response matches the expected structure at the API level without fragile JSON text parsing.
For large diffs, PRRev automatically chunks by file based on actual token counts (not character estimates) and reviews each chunk in parallel. Results are merged and truncated by severity: suggestions are dropped first, then warnings. Critical issues are never dropped.
0:review completed, no issues at or above--fail-onthreshold1:issues found at or above--fail-onthreshold2:tool error (missing API key, invalid args, network failure)
- Typer: CLI framework
- Rich: terminal output with colored severity panels
- GitPython: local diff extraction
- httpx: GitHub API (fetch PR diffs, post inline comments)
- Anthropic SDK: Claude API with tool use for structured output
- OpenAI SDK: GPT-4o API with structured output
- tiktoken: token counting for OpenAI