
GitHub Pull Request Workflow
FreeStreamline your GitHub pull request process for clarity and efficiency.
Free · Opens the source repo
What GitHub Pull Request Workflow does
The GitHub Pull Request Workflow skill provides a structured approach to preparing and managing pull requests (PRs) on GitHub. It emphasizes the importance of clear communication and thorough documentation to ensure that reviewers can easily understand the changes being proposed. By following this workflow, developers can produce high-quality PRs that minimize the need for follow-up questions and facilitate smoother code reviews. This skill is particularly useful for teams that prioritize code quality and collaboration in their development processes.
This skill guides users through essential steps before opening a PR, including ensuring branch hygiene, structuring commit messages, and creating informative titles and bodies. It encourages best practices such as rebasing from the target base, squashing work-in-progress commits into logical units, and confirming that all tests pass before submission. The skill also outlines how to respond effectively to review comments, ensuring that all feedback is acknowledged and addressed in a timely manner.
The GitHub Pull Request Workflow skill is designed for developers and teams who frequently work with GitHub and want to enhance their pull request process. It is particularly beneficial for those who manage multiple PRs and need a consistent approach to maintain clarity and efficiency. By adopting this workflow, teams can improve their collaboration and reduce the friction often associated with code reviews.
While this skill is valuable for GitHub users, it is not suitable for projects hosted on other version control platforms that do not follow GitHub's conventions. Additionally, it is not intended for incomplete changes; users should ensure their work is functionally complete before utilizing this skill.
When to use it
Use this skill when preparing to open a PR or when responding to reviewer feedback on an existing PR.
When not to use it
Avoid using this skill for incomplete changes or in repositories that do not utilize GitHub for version control.
What you can build with it
Opening a New Pull Request
You're ready to submit a feature branch and want to ensure your PR is clear and informative for reviewers.
Responding to Review Comments
A reviewer has left comments on your PR, and you need to address them while maintaining clarity in your responses.
Cleaning Up a Stale Pull Request
Your PR has been open for a while and needs to be updated with the latest changes and a clearer description.
How to install GitHub Pull Request Workflow
View source1. Install with the skills CLI
npx skills add paperclipai/paperclip/github-pr-workflow --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by paperclipaiGitHub Pull Request Workflow
Ship a PR a reviewer can land without follow-up clarifying questions. The aim is high signal in the title and body, evidence the change works, and clean replies when feedback comes in.
When to use
- You are about to open a PR for a change that is functionally complete.
- A reviewer left comments and you need to respond and push fixes.
- A PR has been open more than a day and needs to be brought back into shape (stale conflicts, missing description, missing verification).
When not to use
- The change is not yet functionally complete. Finish the work first; draft PRs that bounce on review are noise.
- The repository uses a non-GitHub forge. Adjust to that forge's conventions; do not force GitHub-isms.
Branch hygiene before opening
- Rebase or merge from the target base so the diff is current.
- Squash WIP commits into reviewable units. Prefer one commit per logical change; do not force one-commit-per-PR if the work is genuinely multi-step.
- Confirm tests, typecheck, and lint pass locally. Note any deliberate skips in the PR body.
- Remove debug prints, commented-out code, and
TODOmarkers that are not tracked.
PR title
- Imperative mood, under 70 characters.
- Lead with the user-visible change, not the file touched.
Allow CSV export from reports tablebeatsUpdate reports.tsx. - If the repo uses an issue prefix convention (
PAP-1234:,[security]), follow it. - No trailing period.
PR body
Use this structure:
## Summary
- 1–3 bullets describing what changed and why.
## Implementation notes
- Anything non-obvious in the diff: trade-offs, dropped alternatives, gotchas.
- Migration or config implications.
## Verification
- The exact commands or steps you ran.
- Screenshots or short clips for UI changes (required if pixels moved).
- Edge cases you exercised by hand.
## Risk and rollback
- What breaks if this is reverted, and how to revert cleanly.
Skip the Risk and rollback section only for clearly trivial PRs (typos, docs).
Verification evidence
- Tests passing in CI is necessary, not sufficient. Reviewers also need to know the change behaves correctly end to end.
- For UI work, include screenshots of the golden path and one edge case. Tag dark and light mode if the project supports both.
- For migrations, include a dry-run plan and reversal steps.
- For performance changes, include a before/after measurement, not adjectives.
Replying to review comments
- Reply on every comment, even with just "fixed in <commit-sha>" — silent fixes leave the reviewer guessing.
- Push fixes as new commits while review is active; do not amend during review unless the reviewer agrees.
- If you disagree with feedback, say so with one sentence of rationale and let the reviewer decide. Don't escalate over comments.
- Re-request review explicitly after pushing changes.
Merge checklist
- All required checks green.
- All review comments resolved.
- PR title/body still accurate (update if scope changed mid-review).
- Linked issue moves to
in_reviewordoneper project convention. - Delete the branch after merge unless it is a long-lived integration branch.
Anti-patterns
- PR description that says "see commits". Reviewers should not need to read the log.
- Mixing refactor and behavior change in the same PR with no separation in the body.
- "Address feedback" commits that bundle unrelated edits. One commit per round of feedback is fine; one commit for everything in flight is not.
- Force-pushing during active review without telling the reviewer.
Frequently asked questions about GitHub Pull Request Workflow
Similar skills
Quality Playbook Generator
Run comprehensive quality audits on any codebase.
PR Draft Summary
Automate PR summary generation for openai-agents-python.
Final Release Review
Streamline your release candidate audits with ease.
Unit Test Vue Pinia
Efficiently write and review unit tests for Vue 3 applications.
Slang Shader Expert
Optimize and integrate Slang shaders with ease.
Telemetry Standards
Ensure consistent event tracking in Supabase Studio.
