requesting-code-review

Automate pre-commit verification with static security scans and quality gates.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/azmiariffaris/HERMES-AGENT --skill requesting-code-review-azmiariffaris
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/azmiariffaris/HERMES-AGENT/tree/main/snapshot/hermes/skills/software-development/requesting-code-review
Command: npx skills add https://github.com/azmiariffaris/HERMES-AGENT --skill requesting-code-review-azmiariffaris

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill automates the pre-commit verification process to prevent insecure or low-quality code from entering the main branch.

Core Features & Use Cases

  • Static security scan on staged changes to identify secrets, risky patterns, and unsafe deserializations.
  • Baseline-aware quality gates that gate merges based on project standards and historical data.
  • Independent reviewer subagent to provide an external code-review perspective and an auto-fix loop to repair minor issues.
  • Auto-fix loop to apply safe automated fixes and re-run validations before committing.

Quick Start

Apply the pre-commit verification to your current changes with the provided script to verify before committing.

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 pre-commit verification to catch code defects before they land?

Pre-commit verification automation applies static security scanning, baseline-aware quality gates, and an independent reviewer subagent to staged changes. It identifies secrets and risky patterns, then uses an auto-fix loop to safely resolve detected issues before the commit is finalized.

What is an auto-fix loop in code review and how does it repair staged changes?

An auto-fix loop safely applies automated repairs to staged code changes and immediately re-runs validations. This cycle repeats until static scans and quality gates pass, ensuring minor issues are resolved autonomously before pulling requests or local commits are submitted.

How do I run a static security scan on staged git changes before committing?

Static security scanning on staged git changes identifies secrets, risky patterns, and unsafe deserializations before code lands. The pre-commit verification process applies these scans automatically to local commits, feature branches, and pull requests.

Can I use baseline-aware quality gates to enforce project standards on feature branches?

Baseline-aware quality gates gate merges based on project standards and historical data. You can apply these pre-commit checks to feature branches and pull requests to ensure code changes meet baseline requirements before integration.

Does the pre-commit auto-fix loop work with independent code reviewer subagents?

The pre-commit verification process uses an independent reviewer subagent to provide an external code review perspective. The auto-fix loop then applies safe automated fixes based on this oversight and re-runs validations before committing.

What are the limitations of automating code review with an auto-fix loop?

The auto-fix loop is limited to applying safe automated fixes for minor issues detected by static scans and the reviewer subagent. Complex logic defects or architectural issues in feature branches may require manual intervention before the quality gates will pass.