dev-requesting-code-review

Run security scans and quality gates on Git diffs before commit.

13|3|Updated May 12, 2026
One-click install
npx skills add https://github.com/kevinnft/ai-agent-skills --skill dev-requesting-code-review
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dev-requesting-code-review
Source: https://github.com/kevinnft/ai-agent-skills/tree/main/skills/software-development/requesting-code-review
Command: npx skills add https://github.com/kevinnft/ai-agent-skills --skill dev-requesting-code-review

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Verifies code changes before commit by running security scans, enforcing quality gates, and performing auto-fixes to keep code safe and clean.

Core Features & Use Cases

  • Automated security scanning of diffs and committed changes before landing.
  • Quality gates enforcement with auto-fix loops and reviewer subagents for two-stage validation.
  • Use cases include feature work, bug fixes, and PR validation across Git workflows.

Quick Start

Run the pre-commit verification pipeline to automatically scan changes, enforce quality gates, and apply auto-fixes before committing.

Frequently Asked Questions about dev-requesting-code-review

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

FAQPage Schema
How do I automate pre-commit code review for security and quality gates?

Automate pre-commit code review by running static security scans, enforcing quality gates, and applying auto-fixes to diffs before code lands. This verifies changes and reports blockers for any regressions across Git commits and pull requests.

What is two-stage review in subagent-driven development?

Two-stage review in subagent-driven development uses reviewer subagents to validate code changes in sequences, enforcing quality gates and auto-fix loops before committing to ensure baseline tests and linting pass.

Does pre-commit verification work with both Git commits and pull requests?

Pre-commit verification works with both Git commits and pull requests, running security scans and quality gates across feature and bug-fix workflows to ensure code is safe and clean before landing.

Do I need a diff to run static security scans before committing?

Yes, you need a diff to be present to run static security scans. The pipeline requires a diff to detect changes, run baseline tests, perform linting, and execute optional type checks before reporting regressions.

Can I enforce auto-fix loops for linting and type checks before code lands?

Yes, you can enforce auto-fix loops for linting and type checks. The pipeline applies auto-fixes and uses reviewer subagents to validate changes, ensuring all quality gates pass before code lands.

Why does automated code review report blockers before a Git commit?

Automated code review reports blockers before a Git commit when static security scans, baseline tests, or linting detect regressions or quality gate failures in the diff, preventing unsafe code from landing.