Software engineering best practices for code review. Use when reviewing code, analyzing code quality, checking for bugs, security vulnerabilities, or providing feedback on code changes.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Software engineering best practices for code review. Use when reviewing code, analyzing code quality, checking for bugs, security vulnerabilities, or providing feedback on code changes.
allowed-tools
Read, Grep, Glob
user-invocable
true
Code Review Best Practices
Core Principles
Review Mindset:
Be constructive, explain the "why"
Prioritize by severity (critical vs nice-to-have)
Suggest alternatives, not just problems
Acknowledge good work
Goals:
Catch bugs before production
Improve code quality
Share knowledge
Prevent security vulnerabilities
Ensure consistency
Security Review
OWASP Top 10 Critical Checks
Injection Attacks:
SQL: Use parameterized queries, never concatenate user input
Command: Avoid shell commands with user input, sanitize properly
Code: Validate all eval(), exec(), dynamic execution