| description | tags | |
|---|---|---|
Perform a comprehensive code review of recent changes |
|
- Current git status: !
git status - Recent changes: !
git diff HEAD~1 - Recent commits: !
git log --oneline -5 - Current branch: !
git branch --show-current
Perform a comprehensive code review focusing on:
- Code Quality: Check for readability, maintainability, and adherence to best practices
- Security: Look for potential vulnerabilities or security issues
- Performance: Identify potential performance bottlenecks
- Testing: Assess test coverage and quality
- Documentation: Check if code is properly documented
Provide specific, actionable feedback with line-by-line comments where appropriate.