review-implementation

Detect git changes, run build and test commands, and emit pass/fail reviews.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Ensures implementations are complete and maintain code quality by detecting changed files, verifying structural requirements, running build and test checks, and performing a semantic review to catch regressions, missing tests, and registration or convention violations.

Core Features & Use Cases

  • Change detection: Auto-detects modified, added, or transformed files from git diffs and categorizes them for targeted reviews.
  • Structural checks: Verifies source locations, test presence, module registration/exports, orphaned imports, and naming conventions with project-specific rules drawn from CLAUDE.md.
  • Build & test validation: Runs project build, test, and lint commands and reports failures with actionable suggestions.
  • Semantic review: Assesses correctness, duplication (DRY), unnecessary complexity (KISS), and whether changes are explainable in one sentence.
  • Integration: Usable as a developer command or CI/PR gate and automatically invoked at the end of workflow:add-model, workflow:add-rule, and workflow:workflow flows.

Quick Start

Run /review-implementation to auto-detect recent changes and receive a structured pass/fail review.

Frequently Asked Questions about review-implementation

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

FAQPage Schema
How do I verify code review changes and detect missing tests in git commits?▼

To verify code review changes and detect missing tests, you can auto-detect modified files from git diffs, enforce test presence, and run build commands to generate a structural pass/fail checklist.

What is a semantic code review and how does it catch regressions?▼

A semantic code review assesses correctness, duplication (DRY), and unnecessary complexity (KISS) in changed files to catch regressions and ensure changes are explainable in one sentence.

How do I check if my pull request meets structural requirements and naming conventions?▼

To check pull request structural requirements, verify source locations, module registration, orphaned imports, and naming conventions using project-specific rules drawn from CLAUDE.md.

Can I use this code review command as a CI/PR gate for build and lint validation?▼

Yes, you can use this code review command as a CI/PR gate to run project build, test, and lint commands, reporting failures with actionable suggestions.

Does the implementation review tool require specific dependencies to run?▼

No specific dependencies are required to run the implementation review, as it auto-detects changes via git diffs and uses existing CLAUDE.md conventions to guide validation.

Why does my automated code review fail on module registration and exports?▼

Automated code review fails on module registration when it detects missing exports or orphaned imports during structural checks against project-specific conventions defined in CLAUDE.md.