Files
gh-ananddtyagi-claude-code-…/commands/code-review.md
2025-11-29 17:53:16 +08:00

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:

  1. Code Quality: Check for readability, maintainability, and adherence to best practices
  2. Security: Look for potential vulnerabilities or security issues
  3. Performance: Identify potential performance bottlenecks
  4. Testing: Assess test coverage and quality
  5. Documentation: Check if code is properly documented

Provide specific, actionable feedback with line-by-line comments where appropriate.