requesting-code-review

Verifies code changes before commit via diff analysis, tests, and linters.

Updated Apr 12, 2026
One-click install
npx skills add https://github.com/thisismynewfmail-ui/Monika-agent --skill requesting-code-review-thisismynewfmail-ui
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/thisismynewfmail-ui/Monika-agent/tree/main/skills/software-development/requesting-code-review
Command: npx skills add https://github.com/thisismynewfmail-ui/Monika-agent --skill requesting-code-review-thisismynewfmail-ui

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It ensures that code changes are securely and reliably validated before they are committed, catching secrets, regressions, and quality issues early in the development workflow.

Core Features & Use Cases

  • Static security scanning of added lines to detect hard‑coded secrets, shell injection, dangerous eval/exec, and other vulnerabilities.
  • Baseline‑aware testing and linting that only flags new failures introduced by the changes.
  • Independent reviewer subagent that provides an unbiased JSON verdict on security and logic concerns.
  • Auto‑fix loop that attempts to automatically correct identified issues with a limited number of retries before escalating to the user.
  • Commit automation that adds a [verified] prefix once all checks pass.

Quick Start

Ask Monika to run the requesting-code-review skill before committing your 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 pre-commit checks and static analysis on my git repository?

Pre-commit checks and static analysis can be executed by running the requesting-code-review skill to verify code changes before committing, catching hard-coded secrets and vulnerabilities early.

Can I automatically fix security issues and code regressions before committing?

Yes, an auto-fix loop attempts to automatically correct identified security and quality issues with a limited number of retries before escalating the problems to the user.

How does baseline-aware testing work for new code changes?

Baseline-aware testing runs language-specific tests and linters that only flag new failures introduced by your current changes, preventing pre-existing issues from blocking the commit.

What is an independent reviewer subagent for code review?

An independent reviewer subagent conducts an autonomous assessment of your code diff, providing an unbiased JSON verdict on both security and logic concerns before commit.

Do I need manual approval after the auto-fix loop resolves detected problems?

If the auto-fix loop successfully resolves all detected problems and static scans pass, commit automation proceeds by adding a verified prefix without requiring further manual approval.

What types of vulnerabilities can static security scanning detect in my code?

Static security scanning detects hard-coded secrets, shell injection, dangerous eval or exec commands, and other vulnerabilities within the added lines of your code changes.