code-review

Automate local code review with a four-loop validation workflow.

Updated Jan 18, 2026
One-click install
npx skills add https://github.com/BenjaminRose805/react-basecamp --skill code-review-benjaminrose805
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/BenjaminRose805/react-basecamp/tree/main/.claude/skills/core/code-review
Command: npx skills add https://github.com/BenjaminRose805/react-basecamp --skill code-review-benjaminrose805

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates local code reviews using a deterministic 4-loop validation workflow to identify syntax, security, build, and architectural issues early in the development lifecycle.

Core Features & Use Cases

  • Progressive checks: Loop 1 Tier 1 handles lint/type/format, Loop 1 Tier 2 validates secrets/build/tests, Loop 2 provides Claude Opus deep analysis, Loop 3 adds a second opinion via CodeRabbit, and Loop 4 performs asynchronous PR review as a safety net.
  • Ship gating: Critical findings block ship; major/minor findings inform but do not block, enabling safe and informed releases.
  • CI/pre-commit integration: Configurable loops and thresholds let teams embed deterministic review in CI pipelines or local development.

Quick Start

Run the /review command to initiate the four-loop workflow on your changed files. The system will generate unified findings and guide the next steps using the Ship Gate.

Frequently Asked Questions about code-review

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

FAQPage Schema
How do I automate local code review before shipping changes?

Automate local code review by running a layered 4-loop validation workflow that progressively checks lint, format, secrets, and builds. This process catches syntax and security issues early, generating unified findings that guide your next steps.

What is ship gating in automated code review?

Ship gating in code review blocks releases when critical findings are detected, while major and minor issues inform but do not block. This gating mechanism enforces safe, configurable thresholds for shipping code.

How do I integrate automated code review into CI pipelines and pre-commit hooks?

Integrate automated code review into CI pipelines by configuring validation loops and thresholds. You can embed deterministic checks for lint, type, secrets, and builds directly into your local development or CI environment.

Does this code review workflow support deep architectural analysis and async PR review?

Yes, the code review workflow supports architectural analysis via deep analysis loops and asynchronous PR review. It incorporates multiple review loops including deep analysis and asynchronous checks as a safety net.

Can I use CodeRabbit for a second opinion in my code review process?

Yes, you can use CodeRabbit to add a second opinion loop in your code review process. It acts as an additional validation layer alongside lint checks, build validation, and deep architectural analysis.

What are the limitations of a 4-loop code review architecture?

A limitation of a 4-loop code review architecture is that it only blocks shipping for critical findings; major and minor issues inform rather than block. You must configure thresholds properly to avoid gating fatigue or bypassing important warnings.