creating-pr

Installation
SKILL.md

Creating a PR

Package work into a pull request that's easy to review and merge.

Workflow

1. Prepare the Branch

Before creating the PR:

# Ensure branch is up to date with base
git fetch origin
git rebase origin/main  # or merge, depending on project convention

# Check what will be in the PR
git log origin/main..HEAD --oneline
git diff origin/main --stat
Installs
177
GitHub Stars
525
First Seen
Apr 12, 2026
creating-pr — spencerpauly/awesome-cursor-skills