PR Review Workflow
Acceptance Criteria
- • All changed files reviewed
- • Security vulnerabilities checked (OWASP top 10)
- • Test coverage verified for new code
- • Code style matches project conventions (CLAUDE.md)
- • No breaking changes without migration path
- • Documentation updated if API changed
Steps
- •Get PR information:
gh pr view --json files,additions,deletions - •Get PR diff:
gh pr diff - •Read all changed files in full
- •Check for security issues (SQL injection, XSS, etc.)
- •Verify tests exist for new code paths
- •Check code style against project CLAUDE.md
- •Generate review summary with:
- •Overall assessment (approve/request-changes)
- •Specific feedback per file
- •Security concerns if any
- •Suggested improvements