Help us improve
Share bugs, ideas, or general feedback.
From code-guardian
Reviews uncommitted git changes or specified file/directory across correctness, security, performance, design, and readability. Classifies findings by severity with line-specific fixes and summary.
npx claudepluginhub rohitg00/awesome-claude-code-toolkit --plugin code-guardianHow this command is triggered — by the user, by Claude, or both
Slash command
/code-guardian:reviewThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /code-guardian:review Perform a thorough code review of the current uncommitted changes or a specified file/directory. ## Process 1. Gather the changes to review: - Run `git diff` for unstaged changes and `git diff --cached` for staged changes - If a specific file or directory is provided as an argument, focus the review there - If no changes exist, review the most recent commit with `git diff HEAD~1` 2. Analyze each changed file across these dimensions: ### Correctness - Logic errors, off-by-one mistakes, incorrect boolean conditions - Unhandled null/undefined values and mi...
/code-reviewReviews uncommitted changes for security vulnerabilities and code quality issues, generates a severity-based report with fixes, and blocks commits on critical/high issues.
/code-reviewReviews uncommitted changes via git diff for security vulnerabilities, code quality issues, and best practices; generates severity-based report with fixes and blocks commits on critical/high issues.
/code-reviewReviews uncommitted code changes via git diff for security vulnerabilities like hardcoded secrets and SQL injection, plus quality issues, generating a severity-based report with line numbers, descriptions, and fixes. Blocks commits on critical/high issues.
/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.
/code-reviewReviews uncommitted changes for security vulnerabilities, code quality issues, and best practices using git diff. Generates report with severity levels, locations, descriptions, fixes; blocks commits on critical/high issues.
/local-reviewReviews uncommitted local changes (staged/unstaged) via multi-agent analysis: CLAUDE.md compliance, bugs, security, TypeScript/performance/quality, simplification. Optional focus argument.
Share bugs, ideas, or general feedback.
Perform a thorough code review of the current uncommitted changes or a specified file/directory.
Gather the changes to review:
git diff for unstaged changes and git diff --cached for staged changesgit diff HEAD~1Analyze each changed file across these dimensions:
Classify each finding by severity:
For each finding, provide:
Present findings grouped by severity, then by file. Lead with critical issues. Skip categories that have no findings. End with a brief summary of overall quality.