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:3456/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

This automatically pulls the Docker image from Docker Hub and starts the web UI. Open http://localhost:3456 to view your PRs.

Serve Options

# Use a different port
claude-reviewer serve --port 8080

# Skip pulling latest image (use cached)
claude-reviewer serve --no-pull

# Development mode (uses local docker-compose)
claude-reviewer serve --dev

Configuration

Default Port

The web UI runs on port 3456 by default (chosen to avoid conflicts with common dev servers like React on 3000).

To use a different port:

# Via environment variable
PORT=8080 claude-reviewer serve

# Or via CLI flag
claude-reviewer serve --port 8080

Environment Variables

Variable Description Default
PORT Port for web UI 3456
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

CLAUDE.md Integration

Add claude-reviewer to your project's CLAUDE.md file so Claude Code knows how to use it:

## Code Review Workflow

When making significant changes, use the local review system:

1. Create a PR for review:
   ```bash
   claude-reviewer create --title "Description of changes"
  1. Wait for review:

    claude-reviewer watch <pr-id> --until changes_requested
    
  2. Address feedback by replying to comments:

    claude-reviewer comments <pr-id>
    claude-reviewer reply <pr-id> <comment-uuid> "Fixed by doing X"
    
  3. Update the PR after fixes:

    claude-reviewer update <pr-id>
    
  4. Merge when approved:

    claude-reviewer merge <pr-id>
    

## Docker

The `claude-reviewer serve` command automatically pulls and runs the Docker image.
You don't need to manually manage Docker - just run:

```bash
claude-reviewer serve   # Pulls image and starts container
claude-reviewer stop    # Stops the container

Manual Docker Usage

If you prefer to run Docker manually:

# Pull and run
docker run -d \
  --name claude-reviewer-web \
  -p 3456:3000 \
  -v ~/.claude-reviewer:/data \
  -v ~:/host-home:ro \
  bowlesb/claude-reviewer:latest

Development with Docker Compose

For local development:

git clone https://github.com/bowlesb/claude-reviewer
cd claude-reviewer
pip install -e claude-reviewer-cli
claude-reviewer serve --dev

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:3456/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.3.6.tar.gz (23.3 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.3.6-py3-none-any.whl (18.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: claude_reviewer-0.3.6.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for claude_reviewer-0.3.6.tar.gz
Algorithm Hash digest
SHA256 1ae243f404854c5dd0b95d5c8e2f765d8d5f31c4cbdd4a645205406bc2e48cac
MD5 e649f1ede29163e5b8f917a1fc315cc8
BLAKE2b-256 9f73c0341122558203ee6aa13d214546a712598ee82b572f056bf28697f97099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for claude_reviewer-0.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 57126c736f0bd38873e88136f97600ffcd8f436c5a2985ca0cc66b80b416ac7e
MD5 664cca80721c667f9b1d4b3560536db6
BLAKE2b-256 72a4cb9ff80eaa77dbc476feb903cc98b2bfd22a46e8b7acb2d8937999d94124

See more details on using hashes here.

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