requesting-code-review

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

Updated Apr 30, 2026
One-click install
npx skills add https://github.com/photonics-dhl/Hermes --skill requesting-code-review-photonics-dhl
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/photonics-dhl/Hermes/tree/main/hermes-home/skills/software-development/requesting-code-review
Command: npx skills add https://github.com/photonics-dhl/Hermes --skill requesting-code-review-photonics-dhl

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Pre-commit verification reduces the risk of introducing security flaws and quality defects by automatically validating code changes before they enter the main branch.

Core Features & Use Cases

  • Static security scans on code diffs
  • Baseline-aware quality gates with an independent reviewer subagent
  • Auto-fix loop to apply safe, non-breaking changes

Quick Start

Run the verification workflow on your staged changes to ensure only compliant commits are produced.

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 code review and security verification?

Automate pre-commit code review by running static security scans and baseline quality gates on staged changes. This enforces verification before changes enter the repository, utilizing an independent reviewer subagent to catch defects.

What is the best way to run static security scans on git diffs before committing?

Running static security scans on git diffs is best handled by integrating an automated verification workflow into your git pre-commit hook. This catches security flaws and quality defects before they reach the main branch.

Can I use an auto-fix loop to apply safe changes during pre-commit verification?

Yes, you can use an auto-fix loop to apply safe, non-breaking changes during pre-commit verification. This automatically resolves baseline quality issues before a commit is finalized.

Does pre-commit verification work with CI pipelines and existing git workflows?

Pre-commit verification works directly with CI pipelines and existing git workflows. It integrates automated static scans and quality gates into your continuous integration to validate feature work and bug fixes.

What are the limitations of using an independent reviewer subagent for code review?

An independent reviewer subagent focuses on baseline quality gates and static scans, meaning it handles safe auto-fixes but may not catch complex, context-dependent logic flaws outside its defined verification scope.