requesting-code-review

Run static security scans, tests, linting, and independent review on staged git changes.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill automates the pre-commit review process, performing security scans, quality gates, an independent reviewer, and auto-fix loops to ensure code is safe and ready to land.

Core Features & Use Cases

  • Static security scans and quality gates to catch issues before commit.
  • Baseline-aware tests and linting to validate new changes against project standards.
  • An independent reviewer subagent to provide an impartial code review.
  • An auto-fix loop that attempts safe, automated corrections prior to final review.
  • Guidance and guardrails for risky operations during code changes.

Quick Start

Run the pre-commit verification to diff staged changes, run static scans and tests, and apply auto-fixes 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 review for security and quality?

Automating pre-commit code review involves diffing staged changes to run static security scans, baseline tests, and linting, followed by an independent reviewer to ensure quality before commit. This skill executes that exact verification pipeline automatically.

What is an auto-fix loop in a pre-commit verification pipeline?

An auto-fix loop in pre-commit verification attempts safe, automated corrections for issues found during static scans or linting. It iteratively applies fixes prior to final review, ensuring code meets project standards without manual intervention.

How do I run static security scans only on staged git changes?

Running static security scans on staged git changes requires identifying the diff with git diff --cached to feed the verification pipeline. This ensures scans and baseline-aware tests validate only new changes against project standards.

Can I use an independent reviewer subagent for impartial code review before commit?

Using an independent reviewer subagent for impartial code review before commit is supported. It evaluates the diff of staged changes alongside scan results to provide an objective quality assessment before code lands.

What are the limitations of automated pre-commit auto-fix loops?

Limitations of automated pre-commit auto-fix loops include their restriction to attempting only safe, automated corrections. If issues remain unresolved, the loop reports results for user review, requiring manual intervention for complex errors.