code-reviewer

Review code changes for quality, security, and performance issues with severity-ranked feedback.

Updated Jun 11, 2026
One-click install
npx skills add https://github.com/brillianodhiya/VisionScript --skill code-reviewer-brillianodhiya
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-reviewer
Source: https://github.com/brillianodhiya/VisionScript/tree/main/.agents/skills/code-reviewer
Command: npx skills add https://github.com/brillianodhiya/VisionScript --skill code-reviewer-brillianodhiya

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually reviewing code for bugs, security vulnerabilities, and style issues is time-consuming and inconsistent. This Skill applies a structured review checklist to catch critical problems before they reach production. ## Core Features & Use Cases - Comprehensive Checklist Review: Evaluates code quality, security, error handling, performance, and test coverage against a defined checklist. - Severity-Ranked Feedback: Organizes findings into Critical, Warning, and Suggestion tiers so teams know what to fix first. - Use Case: Before merging a pull request, run a review to detect SQL injection risks, missing error handling, and untested edge cases, then receive actionable fixes with file and line references. ## Quick Start Review the changes in my current pull request and report any security or quality issues by severity.

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 for security vulnerabilities?▼

Security code review checks for exposed secrets, missing input validation, SQL injection, XSS, and broken authentication. This Skill scans target files against a security checklist and reports each issue with its file location and a suggested fix.

How to get structured feedback on a pull request?▼

Run the review on the changed files to receive feedback grouped into Critical, Warning, and Suggestion tiers. Each finding includes the file path, line number, explanation of the issue, and a concrete fix recommendation.

What does a code review checklist cover?▼

The checklist covers five areas: code quality (readability, naming, DRY), security (secrets, injection, XSS), error handling, performance (bottlenecks, query optimization), and testing (coverage, edge cases).

Can this review any programming language?▼

Yes, the review operates on any readable source files using Read, Grep, and Glob, so it is language-agnostic. However, language-specific checks like framework security rules depend on the reviewer's own knowledge rather than dedicated linters.

What are the limitations of checklist-based code review?▼

Checklist-based review cannot execute code or run tests, so it detects static patterns rather than runtime behavior. It may miss logic bugs that only surface during execution and should complement, not replace, automated testing.