CLI tool that reviews code diffs using LLMs
Project description
PRRev
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.
Install
pip install prrev
Requires Python 3.10+.
Usage
# 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 warning
Configuration
Set API keys as environment variables:
export ANTHROPIC_API_KEY=sk-...
export OPENAI_API_KEY=sk-...
export GITHUB_TOKEN=ghp_...
Or use a config file at ~/.config/prrev/config.toml:
[llm]
provider = "anthropic"
model = "claude-sonnet-4-20250514"
anthropic_api_key = "sk-..."
[github]
token = "ghp_..."
[review]
max_items = 20
You 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.
Providers
# use claude (default)
prrev . --provider anthropic
# use gpt-4o
prrev . --provider openai
# override the model
prrev . --provider anthropic --model claude-sonnet-4-20250514
How It Works
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.
Exit Codes
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)
Tech Stack
- 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file prrev-0.1.1.tar.gz.
File metadata
- Download URL: prrev-0.1.1.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80e47239238a5995dcddfa0a33742d0ed616d03a63520193c04fb3208ecc695f
|
|
| MD5 |
3222ac70417bd7533a860e4e11582243
|
|
| BLAKE2b-256 |
19c0dfe8eb114cde880c074f8a91186d66dc6e6eee47a7de2b3168bd8c552c99
|
File details
Details for the file prrev-0.1.1-py3-none-any.whl.
File metadata
- Download URL: prrev-0.1.1-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3b025be2c1500413f0df092976f7391cc394722f2c8ec4fb27ed31093e8476c
|
|
| MD5 |
0b5be894d884a61ba9a9d4a2aa315fa1
|
|
| BLAKE2b-256 |
becfd851448cee22e7df53d83695107dd3d76e01c69a6c1c5dfe997a4985d247
|