requesting-code-review

Verify staged git changes with security scans, tests, and lint checks.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you catch security issues, regressions, and logic mistakes in your own code changes before they land in git.

Core Features & Use Cases

  • Pre-commit verification pipeline: runs a targeted static security scan, then executes baseline-aware tests and lint/type checks.
  • Independent reviewer subagent: provides a fail-closed JSON-only verdict based on the diff and scan results (not shared context).
  • Auto-fix loop: attempts up to two fix-and-reverify cycles to resolve reported issues without refactoring or adding features.
  • Use case: after completing a bug fix or feature with multiple edited files, you can run a self-contained verification that blocks the commit if NEW failures or review findings appear.

Quick Start

Ask an AI assistant running the skill to perform a pre-commit code verification for your current staged git changes.

Frequently Asked Questions about requesting-code-review

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

FAQPage Schema
How do I run a pre-commit code review on my staged git changes?

To run a pre-commit code review, you ask an AI assistant with the Skill to verify your staged git diff. It executes security scanning, linting, and baseline-aware tests, returning a fail-closed JSON verdict before you commit.

What is the best way to automatically check staged git diff for security issues and regressions?

Automatically checking staged git diff for security and regressions involves running static security scans on added lines and baseline-aware tests. An independent reviewer then provides a fail-closed JSON verdict to block commits if new failures appear.

Can I automatically fix linting and security issues found in my git diff before pushing?

You can automatically fix linting and security issues using an optional auto-fix loop. It attempts up to two fix-and-reverify cycles to resolve reported problems without refactoring or adding features before you push.

Does the pre-commit verification pipeline work for documentation or config-only changes?

The pre-commit verification pipeline supports skipping for documentation or config-only changes. This prevents unnecessary baseline-aware test runs and static security scans when no executable code logic is modified.

Why do I need an independent reviewer subagent for my pre-commit code verification?

An independent reviewer subagent is needed for pre-commit code verification to ensure an unbiased, fail-closed JSON verdict based strictly on the diff and scan results, avoiding shared context contamination from the implementation phase.

What are the limitations of the auto-fix loop in pre-commit code verification?

The auto-fix loop in pre-commit code verification is limited to two fix-and-reverify cycles. It only attempts to resolve reported issues without refactoring code or adding new features, stopping if issues persist.