requesting-code-review

Automate pre-commit code review with security scans, quality checks, and auto-fixes.

Updated May 11, 2026
One-click install
npx skills add https://github.com/richardnguyen0715/keep-it-real --skill requesting-code-review-richardnguyen0715
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/richardnguyen0715/keep-it-real/tree/main/refer-projects/hermes-agent/skills/software-development/requesting-code-review
Command: npx skills add https://github.com/richardnguyen0715/keep-it-real --skill requesting-code-review-richardnguyen0715

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires git, python, pip, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the code review process, ensuring security scans, quality gates, and auto-fixes are applied before code is committed, enhancing code quality and security.

Core Features & Use Cases

  • Pre-commit Review: Performs security scans, quality gates, and auto-fixes on code changes.
  • Security Scan: Identifies hardcoded secrets, shell injection, and other security vulnerabilities.
  • Quality Gates: Lints and tests code to ensure it meets baseline standards.
  • Auto-Fix Loop: Automatically fixes detected issues up to two cycles.
  • Use Case: Ideal for teams that want to ensure code quality and security before committing changes to a repository.

Quick Start

Run the skill to verify your code changes before committing them.

Frequently Asked Questions about requesting-code-review

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

FAQPage Schema
How do I automate code review and security scanning before committing code?

You can automate code review by running pre-commit hooks that perform security scanning, linting, and testing on your staged changes. This process identifies hardcoded secrets and shell injection vulnerabilities while auto-fixing detected issues up to two cycles before commit.

What does a pre-commit security scan check for in my code?

A pre-commit security scan checks for hardcoded secrets, shell injection, and other security vulnerabilities in your code changes. It runs alongside quality gates that lint and test code to ensure baseline security and quality standards are met before committing.

Can I use Python and pip to set up automated code quality checks with git?

Yes, you can use Python and pip to set up automated code quality checks within git pre-commit hooks. This configuration requires tools for static analysis, linting, and testing to perform security scans and auto-fix issues before code is committed.

How do auto-fix loops work during a pre-commit code review?

Auto-fix loops automatically resolve detected code issues up to two consecutive cycles during the pre-commit review. After running security scans and quality gates, the loop applies fixes and re-evaluates the code to ensure it meets baseline standards before committing.

What are the limitations of automated code review for pre-commit hooks?

A limitation of automated code review is that the auto-fix loop is capped at two cycles, meaning complex issues may remain unresolved. Additionally, the process requires specific dependencies like git, python, and pip to function properly in your development workflow.