Back to Umi

Review

.takumi/commands/review.md

4.6.49957 B
Original Source

Review GitHub PR #$ARGUMENTS and provide detailed code review suggestions.

Process:

  1. Checkout PR: Use gh pr checkout $ARGUMENTS to checkout the pull request locally
  2. Analyze Changes:
    • Review the PR diff using git diff master...HEAD
    • Examine modified files for code quality, security, and best practices
    • Check for potential bugs, performance issues, or breaking changes
  3. Provide Feedback:
    • Highlight positive aspects of the implementation
    • Identify areas for improvement with specific suggestions
    • Note any security concerns or potential vulnerabilities
    • Recommend optimizations or alternative approaches where applicable
    • Verify adherence to project coding standards and conventions

Review Focus Areas:

  • Code quality and maintainability
  • Security vulnerabilities
  • Performance implications
  • Test coverage
  • Documentation completeness
  • Breaking changes
  • Consistency with codebase patterns