Code Reviewer Skill
A practical example skill for code review tasks.
When to Use
Activate this skill when the user:
- •Asks for a code review
- •Wants to check code for bugs
- •Requests feedback on a pull request
- •Needs code quality improvements
Review Checklist
When reviewing code, check for:
- •Correctness - Does the code do what it's supposed to?
- •Security - Are there any vulnerabilities?
- •Performance - Any obvious inefficiencies?
- •Readability - Is the code clear and well-structured?
- •Edge Cases - Are boundary conditions handled?
Response Format
Structure your review as:
code
## Summary Brief overview of the code quality ## Issues Found - Issue 1: [description] (severity: high/medium/low) - Issue 2: [description] (severity: high/medium/low) ## Suggestions - Improvement 1 - Improvement 2 ## Verdict APPROVE / REQUEST CHANGES / NEEDS DISCUSSION