pr-review

Automate Pull Request reviews for code quality, security, and performance.

33|5|Updated Jan 14, 2026
One-click install
npx skills add https://github.com/Sir-chawakorn/power-ranger-toolkit --skill pr-review-sir-chawakorn
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pr-review
Source: https://github.com/Sir-chawakorn/power-ranger-toolkit/tree/main/src/skills/pr-review
Command: npx skills add https://github.com/Sir-chawakorn/power-ranger-toolkit --skill pr-review-sir-chawakorn

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and scripts (resource) components.

What problem does it solve?

This Skill automates the review of Pull Requests, ensuring code quality, identifying potential bugs, security vulnerabilities, and adherence to best practices, thereby speeding up the development cycle and improving overall code health.

Core Features & Use Cases

  • Automated Code Analysis: Checks for readability, complexity, duplication, naming conventions, and comments.
  • Bug Detection: Identifies logic errors, edge cases, error handling issues, type safety problems, and async handling flaws.
  • Security Auditing: Scans for input validation flaws, SQL injection risks, XSS vulnerabilities, hardcoded secrets, and improper CORS configuration.
  • Performance Optimization: Flags potential performance bottlenecks like N+1 queries, inefficient memoization, large bundle sizes, and rendering issues.
  • Test Coverage Assessment: Verifies that new code is adequately tested.
  • Use Case: Integrate this skill into your CI/CD pipeline to automatically flag critical issues in every incoming Pull Request before human reviewers even look at it, saving valuable developer time and preventing regressions.

Quick Start

Use the pr-review skill to analyze the latest pull request for code quality and security issues.

Frequently Asked Questions about pr-review

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

FAQPage Schema
How do I automate pull request reviews for code quality and security?

Automate pull request reviews by integrating this skill into your CI/CD pipeline to check code readability, complexity, security vulnerabilities, and testing coverage before human review. It analyzes changes against best practices to provide actionable feedback.

Can CI/CD pipelines automatically detect security vulnerabilities like SQL injection and XSS?

CI/CD pipelines can automatically detect security vulnerabilities like SQL injection and XSS by running automated security auditing scans. This process checks for input validation flaws, hardcoded secrets, and improper CORS configuration in code changes.

What is the best way to identify performance bottlenecks and N+1 queries in a pull request?

Identifying performance bottlenecks like N+1 queries is best handled by automated performance analysis during pull request review. This flags inefficient memoization, large bundle sizes, and rendering issues before code merges into the main branch.

How does automated bug detection work for logic errors and async handling flaws?

Automated bug detection works by analyzing code changes to identify logic errors, edge cases, error handling issues, type safety problems, and async handling flaws. It compares the code against predefined standards to catch regressions early.

Does automated PR review verify test coverage for new code changes?

Automated PR review verifies test coverage by assessing whether new code changes are adequately tested. It checks if new logic and features have corresponding tests to prevent regressions and ensure overall code health.

What are the limitations of automated code analysis for pull requests?

Automated code analysis for pull requests focuses on predefined best practices, security scanning, and performance checks, meaning it complements but does not replace the contextual decision-making and architectural judgment of human reviewers.