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-codeReview 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(...
/code-reviewReviews local uncommitted changes or GitHub PRs (pass PR number/URL) for security vulnerabilities, code quality issues, and best practices. Generates severity-based report with file locations, descriptions, and fixes.
/code-reviewReviews source files changed during a specified phase for bugs, security vulnerabilities, and code quality issues. Produces REVIEW.md with severity-classified findings and inline summary. Supports --depth and --files flags.
/code-reviewPerforms automated multi-agent code review on current GitHub pull request: audits CLAUDE.md, bugs, git history, prior PRs, code comments; scores issue confidence.
/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.
/code-reviewPerforms comprehensive code quality review of repository structure, code, security, performance, architecture, testing, and documentation. Produces prioritized issues and actionable recommendations with examples.
/code-reviewPerforms comprehensive code quality review of repository structure, code, security, performance, architecture, testing, and documentation. Produces prioritized issues and actionable recommendations with examples.
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