From claude-scholar
Reviews uncommitted changes for security vulnerabilities, code quality issues, and best practices. Generates a severity-ranked report and blocks commits on critical/high issues.
How this command is triggered — by the user, by Claude, or both
Slash command
/claude-scholar: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 - Insecure deserialization (pickle) **Code Quality (HIGH):** - Functions > 50 lines - Files > 800 lines - Nesting depth > 4 levels - Missing error handling (try/except) - print() statements in production - TODO/FIXME comments...
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):
if __name__ == "__main__" guardsGenerate report with:
Block commit if CRITICAL or HIGH issues found
Never approve code with security vulnerabilities!
npx claudepluginhub christiannov/claude-scholar --plugin claude-scholar9plugins reuse this command
First indexed Apr 1, 2026
Showing the 6 earliest of 9 plugins
/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.
/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.
/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 a structured code review with severity categorization (Critical/High/Medium/Low) on a file or recent changes. Produces a markdown table of issues and a verdict.
/code-reviewReviews recent Git changes for code quality, security, performance, testing, and documentation, providing specific actionable feedback.