# Pr Review

> PR Review Checklist

- Skill: `itaywol/pr-review` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add itaywol/pr-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/itaywol/pr-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: itaywol (https://skillmd.com/u/itaywol)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/itaywol/pr-review

---

# PR Review Checklist

Use this before requesting review on a pull request.

## Tests

- [ ] Unit tests added or updated for the changed behavior.
- [ ] Integration tests pass locally.
- [ ] No skipped or `xfail` tests without a tracking issue.

## Security

- [ ] No secrets, tokens, or credentials in the diff.
- [ ] User input is validated at every external boundary.
- [ ] Dependencies bumped do not pull in known CVEs.

## Performance

- [ ] No N+1 queries introduced.
- [ ] Loops over large collections are bounded or paginated.
- [ ] Hot paths have a measurement, not a guess.

## Docs

- [ ] Public API changes documented.
- [ ] CHANGELOG or release notes updated when user-visible.

