Create pr github
Skill ForeverAProgrammer/claude-devflow/skills/create-pr-github
Claude Code plugin with skills for daily dev workflows — commits, standups, PRs, design docs, and GitHub automation.
npx -y skills add ForeverAProgrammer/claude-devflow --skill create-pr-githubAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Create a GitHub pull request from the current branch using a description provided by the user.
SKILL.md
1.4 KB, as published. Nobody here has run it
Create a GitHub pull request from the current branch using a description provided by the user.
$ARGUMENTS is the PR description — a sentence, bullet points, or a paragraph explaining what the PR does and why. If $ARGUMENTS is empty, ask the user to provide a description and stop.
Steps:
- Check that
ghis installed and authenticated by runninggh auth status. If not, tell the user and stop. - Push the current branch to the remote if needed:
- Run
git rev-parse --abbrev-ref --symbolic-full-name @{upstream}to check if an upstream is set. - If no upstream is set, run
git push -u origin HEADto push and set tracking. - If an upstream is set, run
git pushto make sure the remote is up to date.
- Run
- Derive a PR title (imperative tense, under 72 chars) and a polished description from $ARGUMENTS:
- What changed (2-4 sentences, plain English)
- Why it was needed if inferrable from the input
- No filler like "This PR..." or vague words without specifics
- Check if a PR already exists for this branch:
gh pr view --json url,number 2>/dev/null.- If no PR exists, run
gh pr create --title "<title>" --body "<description>"to open one. - If a PR already exists, run
gh pr edit --title "<title>" --body "<description>"to update it.
- If no PR exists, run
- Print the PR URL.