pr-atom-reviewerlisted
Install: claude install-skill decebal/curated-claude-skills
# PR Atom Reviewer
Review a local git branch the way a senior engineer who hates wasted reviewer time would. The goal: make sure what goes up for peer review is the **smallest reviewable unit that demonstrably ships one end-to-end behaviour**, with visual proof attached.
This skill assumes the PR lives on a local git branch the user has checked out. If they paste a URL or diff instead, ask them to check the branch out locally first — git commands are how this skill sees the world.
This skill is designed for Claude Code in the terminal: it shells out to `git`, optionally to `gh` (GitHub CLI) for PR description and attachments, and optionally to the AllSource Prime MCP server for memory across reviews (see the "Memory" steps). If Prime tools are unavailable, the skill still works — it just won't learn over time. If `gh` is unavailable, the skill asks the user to paste the PR description if needed.
## Core principles (why this skill exists)
1. **Reviewer attention is the scarce resource, not author time.** A 2000-line PR doesn't cost the author 10× a 200-line PR — but it costs reviewers 10× to do honestly, so they don't, and bugs ship. Splitting is an act of respect.
2. **An atom is one end-to-end behaviour, not one file or one commit.** "Add button" + "wire button to handler" + "handler calls API" is one atom (the button works end-to-end), not three. Conversely, "refactor auth module AND add password reset" is two atoms even if it's one commit.
3. **Atoms target trunk, nev