# code-review > Systematic code review patterns for quality assurance - Author: junyeong-ai - Repository: junyeong-ai/claude-pilot - Version: 20260202091522 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/junyeong-ai/claude-pilot - Web: https://mule.run/skillshub/@@junyeong-ai/claude-pilot~code-review:20260202091522 --- --- name: code-review description: Systematic code review patterns for quality assurance --- # Code Review Skill ## When to Use Use this skill when reviewing code changes for quality, security, and maintainability. ## Review Checklist ### Functionality - [ ] Code accomplishes its stated purpose - [ ] Edge cases are handled appropriately - [ ] Error handling is comprehensive ### Code Quality - [ ] Code follows project conventions - [ ] No unnecessary complexity - [ ] Clear naming and structure ### Security - [ ] No hardcoded secrets - [ ] Input validation present - [ ] No injection vulnerabilities ### Testing - [ ] Adequate test coverage - [ ] Tests are meaningful, not just present - [ ] Edge cases tested ## Review Process 1. Understand the context and purpose 2. Read through changes systematically 3. Check against review checklist 4. Provide constructive feedback 5. Verify fixes if requested