
Code Review Checklist
- 120 installs
- 178 repo stars
- Updated July 14, 2026
- erichowens/some_claude_skills
Generate a context-aware code review checklist from a PR diff, tailored to language, codebase patterns, and change type.
About
Analyzes a PR diff and produces a prioritized code review checklist covering security, performance, maintainability, and testing. A developer uses it before starting a review or to onboard reviewers to team standards.
- Language and change-type specific checks derived from the diff
- Prioritizes security and logic issues over style nitpicks
Code Review Checklist by the numbers
- 120 all-time installs (skills.sh)
- Ranked #417 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/erichowens/some_claude_skills --skill code-review-checklistAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 120 |
|---|---|
| repo stars | ★ 178 |
| Last updated | July 14, 2026 |
| Repository | erichowens/some_claude_skills ↗ |
What it does
Generate a context-aware code review checklist from a PR diff, tailored to language, codebase patterns, and change type.
Files
Code Review Checklist Generator
Generate thorough, contextual code review checklists that help reviewers focus on what matters most for each specific PR.
When to Use
- Before starting a code review to know what to look for
- When onboarding new team members to review standards
- To ensure consistent review quality across the team
- When reviewing unfamiliar parts of the codebase
Approach
1. Analyze the Diff: Understand what files changed and the nature of changes 2. Identify Patterns: Detect the type of change (feature, bugfix, refactor, etc.) 3. Language-Specific Checks: Apply relevant checks for the programming language 4. Project Context: Consider existing patterns and conventions in the codebase 5. Generate Checklist: Produce prioritized, actionable review items
Checklist Categories
Security
- [ ] Input validation present
- [ ] No hardcoded secrets or credentials
- [ ] Proper authentication/authorization checks
- [ ] SQL injection prevention
- [ ] XSS prevention for web code
Performance
- [ ] No N+1 query patterns
- [ ] Appropriate caching considered
- [ ] No unnecessary loops or iterations
- [ ] Efficient data structures used
Maintainability
- [ ] Code is readable and self-documenting
- [ ] Functions are appropriately sized
- [ ] No code duplication
- [ ] Consistent naming conventions
Testing
- [ ] Unit tests cover new functionality
- [ ] Edge cases are tested
- [ ] Tests are meaningful, not just for coverage
Best Practices
- Prioritize security issues first
- Focus on logic errors over style nitpicks
- Consider the reviewer's time - highlight critical items
- Adapt checklist to project maturity level