code-review
Installation
SKILL.md
Code Review Skill
Perform comprehensive code reviews following industry best practices.
1. Security Review
Check for OWASP Top 10 vulnerabilities:
SQL Injection:
# Search for SQL injection risks
grep -r "execute.*\+" . --include="*.py" --include="*.js" --include="*.php"
grep -r "query.*\+" . --include="*.py" --include="*.js"
grep -r "SELECT.*%" . --include="*.py"