requesting-code-review

Review staged git diffs for security, logic, and regression issues.

1|Updated May 18, 2026
One-click install
npx skills add https://github.com/rickyananda/hermes-skills --skill requesting-code-review-rickyananda
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/rickyananda/hermes-skills/tree/main/software-development/requesting-code-review
Command: npx skills add https://github.com/rickyananda/hermes-skills --skill requesting-code-review-rickyananda

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you verify code changes before they are committed or pushed, reducing the chance of shipping security issues, logic bugs, and broken tests.

Core Features & Use Cases

  • Pre-commit verification: Reviews staged or recent diffs before merge, commit, or push.
  • Security and quality gates: Scans for secrets, injection risks, and common unsafe coding patterns.
  • Regression awareness: Compares new test or lint failures against baseline results to separate existing issues from new regressions.
  • Independent review workflow: Uses a separate reviewer context and supports an auto-fix loop when problems are found.

Quick Start

Ask the skill to review your staged changes before committing and report any security, logic, or regression issues it finds.

Frequently Asked Questions about requesting-code-review

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

FAQPage Schema
How do I check staged git diff for security vulnerabilities before committing?

To check staged git diff for security vulnerabilities before committing, review your staged changes to scan for exposed secrets, injection risks, and unsafe coding patterns. This pre-commit verification separates existing baseline issues from new regressions.

What is a pre-commit code review workflow and how does it work?

A pre-commit code review workflow analyzes your recent git diffs to catch logic bugs, security issues, and broken tests before they are merged. It uses an independent reviewer context and an auto-fix loop to resolve detected problems automatically.

Can I automatically fix lint failures and test regressions found in my staged changes?

Yes, you can automatically fix lint failures and test regressions found in staged changes by applying an auto-fix loop. The review process compares new failures against baseline results to identify and resolve only new regressions.

Does this pre-commit review work for merge preparation and post-task verification?

Yes, pre-commit review works for merge preparation and post-task verification. It applies to git-based feature work, bug fixes, and scenarios where multiple files have changed, scanning diffs for quality issues and independent reviewer verdicts.

What is the best way to prevent secrets and injection risks from entering my git commits?

The best way to prevent secrets and injection risks from entering git commits is to run an automated security scan on your staged diff. This quality gate detects common unsafe coding patterns and exposes hidden secrets before you push.