requesting-code-review

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

2|Updated Apr 25, 2026
One-click install
npx skills add https://github.com/AlexiosBluffMara/mercury --skill requesting-code-review-alexiosbluffmara
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/AlexiosBluffMara/mercury/tree/main/skills/software-development/requesting-code-review
Command: npx skills add https://github.com/AlexiosBluffMara/mercury --skill requesting-code-review-alexiosbluffmara

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates pre-commit verification, enforcing security checks, quality gates, and independent reviewer validation before code lands.

Core Features & Use Cases

  • Static security scan on diffs to surface potential vulnerabilities.
  • Baseline-aware quality gates to prevent regressions.
  • Independent reviewer subagent to provide objective code feedback.
  • Auto-fix loop to automatically remediate common issues and improve code quality.

Quick Start

Run the pre-commit verification after implementing changes and before committing or pushing to ensure the code passes security, quality, and reviewer checks.

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 scans?

Automated pre-commit code review runs static security scans and baseline-aware quality gates on your changes. An independent reviewer subagent evaluates the diff, and an auto-fix loop remediates common issues before you commit or push.

What is a baseline-aware quality gate for static analysis?

A baseline-aware quality gate prevents regressions by comparing static analysis results against an existing codebase threshold. It ensures new code changes meet security constraints and quality standards without flagging pre-existing issues.

Can I automatically fix vulnerabilities found in a pre-commit security scan?

Yes, an auto-fix loop automatically remediates common vulnerabilities and quality issues detected during the pre-commit security scan. It iteratively applies fixes to ensure your code changes pass independent reviewer validation before landing.

When do I need an independent reviewer subagent for code changes?

You need an independent reviewer subagent when you require objective code feedback before pushing or creating a PR. It acts as an automated quality gate to catch issues early in the development workflow after implementing a feature or bug fix.

Does the pre-commit auto-fix loop support rollback capabilities?

Yes, the pre-commit auto-fix loop includes deterministic execution and rollback capabilities. This ensures that if automated remediation fails or causes regressions, the code changes can be safely reverted before reaching the commit stage.

How does pre-commit static analysis compare to other code review methods?

Pre-commit static analysis catches vulnerabilities and quality regressions before code lands, unlike post-commit reviews. By combining security scans with an independent reviewer subagent and auto-fix loop, it enforces constraints early with deterministic rollback capabilities.