From stephendolan
Create PR, open pull request, submit for review, push branch. Use when code is ready for review, need to create PR, or "make a PR". Creates concise descriptions focused on the problem being solved.
How this skill is triggered — by the user, by Claude, or both
Slash command
/stephendolan:create-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a high-quality PR for the current branch with a clear, concise description.
Create a high-quality PR for the current branch with a clear, concise description.
Run in parallel:
git diff main...HEAD --stat # Summary of all changes
git log main..HEAD --oneline # Commit history on this branch
git status # Check if pushed to remote
Before drafting, identify:
If the problem isn't clear from commit messages or code, stop and ask the user using AskUserQuestion. Never guess the problem statement.
## Summary
[2-3 sentences: what changed and why]
## Problem
[1-2 sentences: the user-facing issue or business need this solves]
---
Generated with [Claude Code](https://claude.com/claude-code)
Only add a Core Changes section for:
# Push if needed
git push -u origin HEAD
# Create PR (add --draft if requested)
gh pr create --title "type(scope): summary" --body "..."
Report the PR URL when complete.
npx claudepluginhub stephendolan/dotfiles --plugin stephendolanGenerates a PR description from conversation context and git diff, then opens PR creation in browser. Useful for automating the PR drafting workflow.
Creates GitHub pull requests from branch changes using git analysis and gh CLI, with conventional commit titles and standardized templated descriptions including summary, changes, testing, and checklists.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.