code-review-checklist

Validate Laravel and React code changes against project standards.

1|Updated Dec 14, 2025
One-click install
npx skills add https://github.com/mgkyawzayya/claude-code-usage-flow --skill code-review-checklist-mgkyawzayya
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review-checklist
Source: https://github.com/mgkyawzayya/claude-code-usage-flow/tree/main/.claude/skills/code-review-checklist
Command: npx skills add https://github.com/mgkyawzayya/claude-code-usage-flow --skill code-review-checklist-mgkyawzayya

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provide a structured code review checklist to ensure correctness, security, and maintainability.

Core Features & Use Cases

  • Validation loop: Run tests before reporting review.
  • OWASP checks: Security-focused review points.
  • Frontend & Laravel: Cover both stacks.

Quick Start

Review a PR using the checklist to ensure coverage of correctness, security, and performance.

Frequently Asked Questions about code-review-checklist

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

FAQPage Schema
How do I automate code review checks for Laravel and React projects?

Code review automation runs validation checks on pull requests by executing tests, type checking, linting, and formatting tools. This Skill orchestrates composer test, npm run types, npm run lint, and ./vendor/bin/pint --test in sequence, enforcing correctness, security, and maintainability standards before merge.

What security issues does a code review checklist catch?

A structured checklist incorporates OWASP security review points alongside correctness and performance checks. It systematically validates code changes against security criteria, helping identify vulnerabilities during PR review or pre-merge audits.

Can I use an automated code review process across both frontend and backend stacks?

Yes. This checklist covers both Laravel backend and React frontend by running stack-specific validation commands—composer and PHP tools for Laravel, npm tools for React—ensuring consistent quality gates across your full stack.

How does a mandatory validation loop improve code quality?

A validation loop enforces tests and linting before review findings are reported, preventing reviewer feedback on code that fails basic checks. This ensures only code meeting project standards enters the review phase, reducing back-and-forth cycles.

What's the difference between manual code review and automated checklist validation?

Automated checklist validation catches correctness, security, and style issues consistently through tests and linters, freeing reviewers to focus on logic and architecture. Manual review complements automation by catching context-specific concerns automation cannot detect.