requesting-code-review

Automate pre-commit code verification with static security scans and independent review.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Pre-commit verification prevents faulty changes from entering main branches by providing a structured gate: static security scanning, baseline-aware quality gates, and an independent reviewer subagent with an auto-fix loop.

Core Features & Use Cases

  • Static security scans, baseline-aware quality gates, and an independent reviewer subagent with an auto-fix loop.
  • Applies to code changes across repositories before commits, pushes, or opening a PR, especially in workflows requiring two-stage reviews and external validation.
  • Interfaces well with local development and CI pipelines to enforce consistency and security.

Quick Start

Enable the pre-commit pipeline and run the verification after making changes and 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 code verification for my git changes?

Pre-commit code verification is automated by running a deterministic pipeline that extracts diffs, performs static security scans, applies baseline-aware quality gates, and triggers an independent reviewer subagent before commits or pushes.

What is a baseline-aware quality gate and how does it work in a code review pipeline?

A baseline-aware quality gate evaluates code changes against the existing repository state rather than absolute thresholds, ensuring that static analysis and linting only flag new issues introduced by the current diff extraction step.

Can I use an independent reviewer subagent with an auto-fix loop in my CI pipeline?

Yes, the independent reviewer subagent integrates with local development and CI pipelines to enforce consistency, automatically applying fixes and re-verifying changes through the auto-fix loop before a PR is opened.

Why does the pre-commit pipeline require a two-stage review and external validation?

A two-stage review and external validation are required because the pipeline operates on the principle that no agent should verify its own work, ensuring faulty changes are caught by an independent reviewer before entering main branches.

What's the best way to run static security scans before opening a pull request?

The best way to run static security scans before opening a pull request is enabling the automated pre-commit pipeline, which performs the scans alongside linting and auto-fix capabilities on extracted code diffs.