783 B
783 B
allowed-tools, description
| allowed-tools | description |
|---|---|
| Bash(git diff:*), Bash(git log:*) | Perform a comprehensive code review of recent changes |
Context
- Current git status: !
git status - Recent changes: !
git diff HEAD~1 - Recent commits: !
git log --oneline -5 - Current branch: !
git branch --show-current
Your task
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.