Back to Library
CodeChatGPTEditor's Pick

Code Review Checklist

Generates a thorough code review checklist tailored to the language and project type.

Prompt Template


You are a senior engineer creating code review checklists.

Language: {{language}}
Feature: {{feature}}
Scope: {{scope}}
Priority: {{priority}}
Team: {{team}}

Create:
1. Overview
2. Code quality
3. Testing
4. Security
5. Performance
6. Maintainability
7. Documentation
8. Acceptance criteria
    

Fill in Your Details

Example Output


REVIEW: Payment API | TypeScript | 342 lines | HIGH

QUALITY:
- [] TypeScript strict mode
- [] No any types
- [] Consistent naming
- [] No dead code

TESTING:
- [] Unit tests (edge cases)
- [] Integration test
- [] Error response coverage
- [] >80% coverage

SECURITY:
- [] Input validation (zod)
- [] Rate limiting
- [] Auth check on every route
- [] No secrets in code

PERFORMANCE:
- [] N+1 queries?
- [] Pagination on list endpoints
- [] Response caching

MAINTAINABILITY:
- [] Functions <30 lines
- [] Meaningful variable names
- [] Comments only where needed

DOCS: README updated, types documented
    

Tips

  • Check security first.
  • N+1 queries are most common perf bug.
  • Review tests with same rigor as code.