create-pr

Installation
SKILL.md

Create Pull Request Skill

When creating a pull request, follow this structured process. A good PR tells reviewers what changed, why, and how to verify it.

1. Pre-PR Discovery

Before creating the PR, gather context:

Current Branch & Changes

# Current branch name
git branch --show-current

# Base branch (what we're merging into)
git log --oneline --decorate --first-parent HEAD | head -1
git remote show origin | grep "HEAD branch" | sed 's/.*: //'

# Commits on this branch (not on main/develop)
BASE_BRANCH=$(git remote show origin | grep "HEAD branch" | sed 's/.*: //')
Related skills

More from aakash-dhar/claude-skills

Installs
1
First Seen
Mar 9, 2026