Reviews uncommitted Git changes for security vulnerabilities, code quality issues, and best practices, then generates a severity-ranked report and blocks commits with critical or high issues.
How this command is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:code-reviewThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Code Review Comprehensive security and quality review of uncommitted changes: 1. Get changed files: git diff --name-only HEAD 2. For each changed file, check for: **Security Issues (CRITICAL):** - Hardcoded credentials, API keys, tokens - SQL injection vulnerabilities - XSS vulnerabilities - Missing input validation - Insecure dependencies - Path traversal risks **Code Quality (HIGH):** - Functions > 50 lines - Files > 800 lines - Nesting depth > 4 levels - Missing error handling - console.log statements - TODO/FIXME comments - Missing JSDoc for public APIs **Best Practices (MEDIU...
Comprehensive security and quality review of uncommitted changes:
Get changed files: git diff --name-only HEAD
For each changed file, check for:
Security Issues (CRITICAL):
Code Quality (HIGH):
Best Practices (MEDIUM):
Generate report with:
Block commit if CRITICAL or HIGH issues found
Never approve code with security vulnerabilities!
npx claudepluginhub leonvanzyl/everything-claude-code82plugins reuse this command
First indexed Jan 22, 2026
Showing the 6 earliest of 82 plugins
/code-reviewReviews uncommitted Git changes for security vulnerabilities, code quality issues, and best practices, then generates a severity-ranked report and blocks commits with critical or high issues.
/code-reviewReviews uncommitted code changes for security vulnerabilities and quality issues, then generates a severity-graded report and blocks commits on critical findings.
/code-reviewReviews uncommitted changes for security vulnerabilities, code quality issues, and best practices. Generates a severity-ranked report and blocks commits on critical/high issues.
/reviewPerforms a thorough code review of uncommitted changes or a specified file/directory, analyzing correctness, security, performance, design, and readability with severity-classified findings.
/reviewPerforms structured code review on a file, recent unstaged changes, or changes since last commit. Categorizes issues by severity and outputs markdown table with verdict.
/verifyPerforms a systematic second-pass verification of all changed files in the working tree, flagging logic, security, and common mistakes by severity.