code-reviewer

Review code changes for bugs, security vulnerabilities, and project guideline compliance with confidence scoring.

Updated Apr 4, 2026
One-click install
npx skills add https://github.com/juanjo-zurich/juarvis-v4 --skill code-reviewer-juanjo-zurich
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-reviewer
Source: https://github.com/juanjo-zurich/juarvis-v4/tree/main/plugins/feature-dev/skills/code-reviewer
Command: npx skills add https://github.com/juanjo-zurich/juarvis-v4 --skill code-reviewer-juanjo-zurich

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code reviews often produce noisy feedback full of false positives and minor stylistic nitpicks, making it hard for developers to identify the issues that actually matter. This Skill reviews code changes against project guidelines and reports only high-confidence problems, so teams catch real bugs and security vulnerabilities before they reach production. ## Core Features & Use Cases - Guideline Compliance Checking: Verifies code against explicit project rules in AGENTS.md or equivalent context files, covering import patterns, error handling, logging, testing practices, and naming conventions. - Bug and Vulnerability Detection: Identifies logic errors, null handling issues, race conditions, memory leaks, security vulnerabilities, and performance problems in uncommitted git changes. - Confidence-Based Filtering: Scores every potential issue from 0 to 100 and reports only those with confidence of 80 or higher, grouped by severity with file paths, line numbers, and concrete fix suggestions. - Use Case: After implementing a new feature, run a review of your uncommitted changes before committing to catch a missed null check or a violation of your project's error handling convention. ## Quick Start Review my uncommitted changes for bugs, security issues, and compliance with the project guidelines in AGENTS.md.

Frequently Asked Questions about code-reviewer

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

FAQPage Schema
How do I review code changes before committing?▼

Run a code review on your uncommitted git diff changes to catch bugs, security vulnerabilities, and guideline violations before they enter the repository. The review checks your changes against project rules in AGENTS.md and reports only high-confidence issues with file paths and fix suggestions.

How to reduce false positives in automated code review?▼

Use confidence-based filtering where each potential issue is scored from 0 to 100 and only findings scoring 80 or higher are reported. This eliminates stylistic nitpicks and speculative issues, focusing the review on problems that will actually occur in practice.

What types of bugs does automated code review detect?▼

The review detects logic errors, null and undefined handling issues, race conditions, memory leaks, security vulnerabilities, and performance problems. It also flags code quality concerns like duplication, missing critical error handling, accessibility issues, and inadequate test coverage.

Can code review check compliance with project conventions?▼

Yes, the review verifies adherence to explicit project guidelines typically defined in AGENTS.md or an equivalent context file. This includes import patterns, framework conventions, language-specific style, error handling, logging, testing practices, and naming conventions.

What code scope does the review cover by default?▼

By default the review covers uncommitted changes from git diff. You can specify different files or a custom scope when you need to review a particular subset of the codebase instead.