Automated GitHub Pull Request reviewer with comprehensive checks. Use when reviewing PRs for code quality, security, tests, documentation, and best practices.
Automated GitHub Pull Request reviewer with comprehensive checks for code quality, security, tests, and documentation.
Review a specific PR:
gh pr view 123 --repo owner/repo --json number,title,body,files
gh pr view <number> --repo <owner/repo> --json number,title,body,author,createdAt,files
gh pr diff <number> --repo <owner/repo> --name-only
gh pr diff <number> --repo <owner/repo>
gh pr checks <number> --repo <owner/repo>
gh pr review <number> --repo <owner/repo> --approve --body "LGTM!"
Use with linting and security tools:
# Run linter
npm run lint
# Run security scan
npm audit
# Run tests
npm test
# Check test coverage
npm run test:coverage