code-review
Use this skill for code review and PR review tasks. Covers review methodology, what to flag, what to skip, and output structure.
Install
mkdir -p .claude/skills/code-review-pollis22 && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14440" && unzip -o skill.zip -d .claude/skills/code-review-pollis22 && rm skill.zipInstalls to .claude/skills/code-review-pollis22
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use this skill for code review and PR review tasks. Covers review methodology, what to flag, what to skip, and output structure.About this skill
Code Review
Review a GitHub pull request for substantive issues. Focus on what matters, skip what doesn't.
Steps
- Run
gh pr view {pr_number} --json title,body,filesto understand the PR's purpose and scope. - Run
gh pr diff {pr_number}to read the full diff. - Before commenting, read surrounding code to understand full context — a pattern that looks wrong in isolation may be an established convention.
Focus Areas (priority order)
- Correctness — Logic bugs, edge cases, error handling
- Security — Input validation, injection risks, secrets exposure
- Reliability — Race conditions, failure modes, resource leaks
- Performance — Inefficient algorithms, N+1 queries, unnecessary work
- Breaking changes — API/behavior changes affecting callers
- Test coverage — Are new code paths tested?
Skip style/formatting unless it materially impacts readability. Do not nitpick naming, style preferences, or issues linters catch.
Severity Levels
- Blocking: Must fix before merge (bugs, security, significant reliability/performance issues, breaking changes)
- Non-blocking: Suggestions for improvement (optional)
Output Format
Findings
For each issue found:
[Issue Title]
- Severity: blocking | non-blocking
- Location:
file_path:line_number - Description: What the issue is and why it matters
- Suggested Fix: Concrete code change or approach
If no issues found, state that the changes look correct and explain why.
Summary
Overall assessment: is the PR ready to merge, or does it need changes? List the most important issues if any.