requesting-code-review

Identify and reject code changes failing security, quality, or style gates.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/HugoAlmeidaMoreira/zeus-agent --skill requesting-code-review-hugoalmeidamoreira
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/HugoAlmeidaMoreira/zeus-agent/tree/main/skills/software-development/requesting-code-review
Command: npx skills add https://github.com/HugoAlmeidaMoreira/zeus-agent --skill requesting-code-review-hugoalmeidamoreira

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the pre-commit review process to catch security, quality, and style issues before code lands, reducing defects and rework.

Core Features & Use Cases

  • Static security scans: Detect sensitive data leaks, insecure patterns, and risky configurations in diffs.
  • Baseline tests and linting: Run language-specific tests and linters to enforce quality gates.
  • Auto-fix loop: Suggest or apply safe fixes to clean up issues before commit, with guidance for the reviewer.

Quick Start

Run the verification workflow on your staged changes to ensure they meet the required gates 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 code review and security checks before committing?▼

Automate code review and security checks by running static scans, linting, and baseline tests across staged diffs. This identifies and rejects changes that fail security, quality, or style gates before they enter the main branch.

What is a pre-commit verification auto-fix loop?▼

A pre-commit verification auto-fix loop automatically suggests or applies safe fixes to clean up detected style or quality issues before commit. It provides clear guidance for reviewers and developers to ensure consistent verification.

Can I run static security scans on git pull request diffs?▼

Yes, you can run static security scans on pull request diffs to detect sensitive data leaks, insecure patterns, and risky configurations. This ensures changes meet quality gates during two-stage review processes.

How do I stop insecure code changes from entering the main branch?▼

Stop insecure code changes from entering the main branch by applying automated verification across staged commits. The process identifies and rejects failing code changes before they land, reducing defects and rework.

Does pre-commit verification work with language-specific tests and linters?▼

Yes, pre-commit verification works with language-specific tests and linters to enforce quality gates. It runs these checks across diffs in staged commits and pull requests to ensure consistent verification before code lands.

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

Automated pre-commit code review limitations include relying on static scans, baseline tests, and linting, which may not catch all complex logic flaws. It applies safe auto-fixes but requires clear guidance for reviewers to handle edge cases.