agentsclimarketplace

Review pr

Skill viknesh20-20/claude-code-tool-kit/.claude/skills/review-pr

Performs a comprehensive pull request code review covering correctness, security, performance, test coverage, and coding standards. Use when reviewing any code changes before merge.From its SKILL.md

Install
npx -y skills add viknesh20-20/claude-code-tool-kit --skill review-pr

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.8 KB, 580 tokens by cl100k_base, as published. Nobody here has run it

Pull Request Code Review

Gather Context

Changed Files

!git diff --name-only HEAD~1 2>/dev/null || echo "No commits to diff"

Diff Summary

!git diff --stat HEAD~1 2>/dev/null || echo "No diff available"

Full Diff

!git diff HEAD~1 2>/dev/null | head -500

Recent Commits

!git log --oneline -10 2>/dev/null


Review Checklist

Analyze every changed file against the following categories. For each finding, provide:

  • File path and line number
  • Severity: Critical / High / Medium / Low
  • Description of the issue
  • Suggested fix with code snippet

1. Correctness

  • Logic errors or off-by-one mistakes
  • Missing null/undefined/nil checks
  • Incomplete error handling
  • Race conditions or concurrency issues
  • Incorrect use of APIs or library functions

2. Security

  • Input validation gaps (SQL injection, XSS, command injection, path traversal)
  • Hardcoded secrets, tokens, or credentials
  • Authentication/authorization bypass risks
  • Insecure data handling (PII exposure, logging sensitive data)
  • Missing CSRF/CORS protections where applicable

3. Performance

  • N+1 query patterns
  • Unnecessary loops or redundant computations
  • Missing pagination for unbounded queries
  • Blocking operations in async contexts
  • Large memory allocations in hot paths
  • Missing indexes for new database queries

4. Test Coverage

  • Are new code paths covered by tests?
  • Are edge cases and error paths tested?
  • Are mocks appropriate and not over-mocking?
  • Do test names clearly describe the scenario?

5. Code Quality

  • Readability and naming clarity
  • Unnecessary complexity that can be simplified
  • Code duplication that should be extracted
  • Dead code or unused imports
  • Missing or misleading comments

6. Conventions

  • Adherence to project coding standards (check CLAUDE.md)
  • Consistent formatting and style
  • Proper commit message format
  • Documentation for public APIs

Output Format

Findings

Group findings by severity:

Critical (must fix before merge)

<!-- Blocking issues -->

High (strongly recommend fixing)

<!-- Significant issues -->

Medium (should fix)

<!-- Moderate issues -->

Low (nice to have)

<!-- Minor suggestions -->

Summary

Provide a 2-3 sentence executive summary of the PR quality.

Verdict

State one of:

  • GO — Ready to merge (no critical/high issues)
  • CONDITIONAL GO — Merge after addressing critical/high findings
  • NO-GO — Significant issues require rework before re-review

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,852. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.