Skip to main content

Local PR review system for Claude Code - GitHub-style code review without leaving your terminal

Project description

Claude Reviewer

A local PR review system for Claude Code. Create pull requests, review diffs with inline comments, and merge changes—all without leaving your terminal.

PyPI version Python 3.9+ License: MIT

Why Claude Reviewer?

When working with AI coding assistants like Claude, you often want to review changes before merging them. Claude Reviewer provides:

  • GitHub-like code review - View diffs, add inline comments, approve or request changes
  • CLI-first workflow - Perfect for AI agents that work in the terminal
  • Local & private - All data stays on your machine
  • No external dependencies - Just SQLite for storage

Installation

pip install claude-reviewer

Quick Start

1. Create a PR

# On your feature branch with changes
claude-reviewer create --title "Add new feature"

# Output:
# PR #a1b2c3d4 created successfully
# Review URL: http://localhost:3000/prs/a1b2c3d4

2. Start the Web UI

# Start the review interface
claude-reviewer serve

3. Review & Merge

# Check status
claude-reviewer status a1b2c3d4
# Output: changes_requested

# See comments
claude-reviewer comments a1b2c3d4
# Output: [src/app.py:42] Please add error handling here

# After addressing feedback, update the PR
claude-reviewer update a1b2c3d4

# Once approved, merge
claude-reviewer merge a1b2c3d4 --push

Commands

Command Description
create Create a new PR from current branch
list List all PRs
status Check PR status
comments Get inline comments with file:line references
show Show detailed PR information
update Update PR diff after making changes
merge Merge an approved PR
serve Start the web UI
stop Stop the web UI

CLI Reference

Create a PR

claude-reviewer create \
  --title "Feature: Add user authentication" \
  --description "Implements OAuth2 login flow" \
  --base main \
  --head feature/auth

List PRs

# All PRs
claude-reviewer list

# Filter by status
claude-reviewer list --status pending
claude-reviewer list --status approved
claude-reviewer list --status changes_requested

Get Comments

# Human-readable format
claude-reviewer comments a1b2c3d4

# JSON format (for automation)
claude-reviewer comments a1b2c3d4 -f json

# Only unresolved comments
claude-reviewer comments a1b2c3d4 --unresolved

Merge

# Merge locally
claude-reviewer merge a1b2c3d4

# Merge and push to remote
claude-reviewer merge a1b2c3d4 --push

# Merge and delete source branch
claude-reviewer merge a1b2c3d4 --delete-branch

Web UI

The web interface provides:

  • Diff viewer - Side-by-side or unified view
  • Inline comments - Click any line to add a comment
  • File tree - Navigate between changed files
  • Review actions - Approve or request changes

Start it with:

claude-reviewer serve

Then open http://localhost:3000

Configuration

Environment Variables

Variable Description Default
CLAUDE_REVIEWER_HOST Host for review URLs localhost
CLAUDE_REVIEWER_WEB_DIR Path to web app (auto-detected)

Database Location

Data is stored in ~/.claude-reviewer/data.db

Integration with Claude Code

Claude Reviewer is designed to work seamlessly with Claude Code:

# Claude makes changes
git checkout -b feature/new-thing
# ... Claude writes code ...
git commit -m "Add new feature"

# Claude creates PR
claude-reviewer create --title "Add new feature"
# Output: Review URL: http://localhost:3000/prs/abc123

# User reviews in browser, requests changes

# Claude checks for feedback
claude-reviewer status abc123  # "changes_requested"
claude-reviewer comments abc123
# [src/api.py:45] Add input validation

# Claude addresses feedback
# ... makes fixes ...
git commit -m "Add input validation"
claude-reviewer update abc123

# User approves

# Claude merges
claude-reviewer merge abc123 --push

Development

# Clone the repo
git clone https://github.com/benbowles/claude-reviewer
cd claude-reviewer/claude-reviewer-cli

# Install with dev dependencies
pip install -e ".[dev]"

# Run tests
make test

# Type checking
make typecheck

# Format code
make format

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

claude_reviewer-0.1.0.tar.gz (18.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

claude_reviewer-0.1.0-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

File details

Details for the file claude_reviewer-0.1.0.tar.gz.

File metadata

  • Download URL: claude_reviewer-0.1.0.tar.gz
  • Upload date:
  • Size: 18.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for claude_reviewer-0.1.0.tar.gz
Algorithm Hash digest
SHA256 94b345c92df23c7d436ce1b53198ddc5e86eeac04741d3a55b7ad0df514e19fb
MD5 32d5f93644cbc6ed979812715fee60bc
BLAKE2b-256 fcad724b5a529a7f235ea1e5feda7a3d5616c28baf6ecb4e87659686cdb804a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for claude_reviewer-0.1.0.tar.gz:

Publisher: publish.yml on bowlesb/claude-reviewer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file claude_reviewer-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for claude_reviewer-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 422b789681f52170226b2b6c549eac0995f0d3fafdec55ec621eaabdc005e760
MD5 5ff54199039d566c0e39aae5bc944fd4
BLAKE2b-256 8a0590c251d65258d8dd10083fe246d4cb57737daf094f0fca3de981541af81f

See more details on using hashes here.

Provenance

The following attestation bundles were made for claude_reviewer-0.1.0-py3-none-any.whl:

Publisher: publish.yml on bowlesb/claude-reviewer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page