code-review Claude Code Plugin
Claude Code PluginClaude CodeProductivityCode Quality, Review & TestingClaude Code Customization & WorkflowThe explanation below is AI-generated. Please verify it against the sources.
This plugin adds a /code-review command to Claude Code that automatically reviews pull requests. It runs four independent review agents in parallel: two check compliance with a repository's CLAUDE.md guideline files, one looks for obvious bugs introduced by the change, and one examines git blame and commit history for context. Each detected issue is given a confidence score from 0 to 100, and only issues meeting a default threshold of 80 are posted as a review comment, which is intended to reduce false positives. Closed, draft, trivial, or already-reviewed pull requests are skipped automatically. The threshold and the set of review agents can be adjusted by editing the command file that ships with the plugin.
About the service
The plugin relies on the GitHub CLI (gh) to interact with GitHub: it fetches pull request details, diffs, and commit/blame history, and it posts the resulting review comment back onto the pull request. It therefore requires a git repository connected to GitHub with an authenticated gh installation.
What you can do with code-review
- Trigger an automated multi-agent review of a pull request with a single command
- Have changes checked against a repository's CLAUDE.md guidelines by two independent agents
- Catch obvious bugs introduced specifically by the change under review
- Get historical context on flagged lines via git blame analysis
- See only issues that clear a configurable confidence threshold (default 80 out of 100)
- Rely on automatic skipping of closed, draft, trivial, or already-reviewed pull requests
- Adjust the confidence threshold or add new review agents by editing the command file