review

Automate two-pass code reviews with auto-fixes for Git-based PRs.

Updated Mar 14, 2026
One-click install
npx skills add https://github.com/francoisbgdw/claude-skills --skill review-francoisbgdw
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review
Source: https://github.com/francoisbgdw/claude-skills/tree/main/skills/review
Command: npx skills add https://github.com/francoisbgdw/claude-skills --skill review-francoisbgdw

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Two-pass code review with auto-fix — reviews PRs or staged changes, auto-fixes obvious issues, batches judgment calls for the user. Use when asked to "review code", "review this PR", "code review", or "check my changes".

Core Features & Use Cases

  • Two-pass review with auto-fix: automatically apply trivial fixes and prepare a batched list of questions for remaining decisions.
  • Deterministic improvements: fixes obvious issues such as typos, unused imports, missing error handling, and style inconsistencies.
  • PR-powered workflow: integrates with git and GitHub PRs to assess changes across branches and PRs.
  • Use Case: When you need a fast, repeatable quality gate on code changes before merging.

Quick Start

Tell the AI to perform a two-pass code review on the current branch, apply auto-fixes for obvious issues, and batch decision questions for unresolved items.

Frequently Asked Questions about review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate code review on a pull request?

Automating code review on a pull request involves performing a two-pass analysis of changes to apply deterministic fixes for obvious issues like missing error handling. The tool then batches remaining judgment calls into a list of questions for you to resolve before merging.

How does a two-pass code review with auto-fix work?

A two-pass code review with auto-fix works by first scanning changes to automatically apply deterministic fixes for style inconsistencies and trivial errors. The second pass batches unresolved decision items and provides clear guidance on remaining questions.

Can I run an automated code review on staged git changes?

Yes, you can run an automated code review on staged git changes. The review process integrates directly with git workflows to assess staged changes across branches and applies auto-fixes before a commit or pull request.

Do I need GitHub CLI access to automate PR quality checks?

Yes, you need GitHub CLI access to automate PR quality checks. The tool requires access to git and GitHub tools like gh to assess changes across branches and pull requests while enforcing safety checks.

What kind of code issues can an auto-fix pull request review handle?

An auto-fix pull request review can handle deterministic improvements such as fixing typos, removing unused imports, adding missing error handling, and correcting style inconsistencies. It leaves complex logic decisions for the user.