Help us improve
Share bugs, ideas, or general feedback.
From rlm-claude-code
Reviews current code changes against checklist for correctness, type safety, testing, performance, security, style. Outputs actionable feedback with file:line references, blocking/non-blocking issues.
npx claudepluginhub rand/rlm-claude-code --plugin rlm-claude-codeHow this command is triggered — by the user, by Claude, or both
Slash command
/rlm-claude-code:code-reviewThe summary Claude sees in its command listing — used to decide when to auto-load this command
Review the current changes following docs/process/code-review.md. ## Review Checklist ### Correctness - Does the implementation match the spec section? (cite §X.Y) - Are edge cases handled (empty context, max depth, timeout)? - Do error states produce meaningful messages? ### Type Safety - All public functions have return type annotations? - No `# type: ignore` without justification? ### Testing - Unit tests for new functions? - Property tests for data transformations? - Security tests for REPL operations? ### Performance - Complexity classifier <50ms? - REPL execution <100ms? - No O(...
/review-enhancedPerforms multi-pass code review on changed files, analyzing security vulnerabilities, runtime errors, performance, and quality. Outputs summary with categorized issues and recommendations.
/code-reviewPerforms code review on files, directories, recent git changes, or PRs, providing actionable feedback on quality, security, performance, maintainability, and testing.
/reviewReviews code quality of optional file or recent changes, providing assessment, issues found, recommendations, and best practices.
/reviewPerforms a comprehensive code review on a specified file or recent changes, delivering actionable feedback on quality, security, performance, best practices, and bugs.
/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 local uncommitted changes or GitHub pull requests for security, code quality, and best practices. Also supports PR review mode with full file context.
Share bugs, ideas, or general feedback.
Review the current changes following docs/process/code-review.md.
uv run ty check src/
# type: ignore without justification?uv run ruff check src/
uv run ruff format src/ --check
Provide specific, actionable feedback with file:line references.
Blocking issues: Must fix before commit Non-blocking: File as issues for later