From double-check
Performs a systematic second-pass verification of all changed files in the working tree, flagging logic, security, and common mistakes by severity.
How this command is triggered — by the user, by Claude, or both
Slash command
/double-check:verifyThe summary Claude sees in its command listing — used to decide when to auto-load this command
Perform a systematic second-pass verification of code changes to catch errors before commit. ## Steps 1. Identify all files changed in the current working tree using `git diff --name-only`. 2. For each changed file, perform these checks: 3. Check for common mistakes: 4. Verify logic correctness: 5. Check for security issues: 6. Summarize findings with severity ratings. ## Format ## Rules - Review every changed file, not just the ones that seem important. - Flag issues by severity: CRITICAL (must fix), WARNING (should fix), INFO (consider). - Never approve code with CRITICAL issues.
Perform a systematic second-pass verification of code changes to catch errors before commit.
git diff --name-only.File: <filename>
Issues Found: <count>
- [CRITICAL] <description>
- [WARNING] <description>
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub avelikiy/awesome-claude-code-toolkit --plugin double-check/verifyPerforms a systematic second-pass verification of all changed files in the working tree, flagging logic, security, and common mistakes by severity.
/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 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 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.