skills/pr-create/SKILL.md
Use this skill to create a pull request from current local changes. Invoke when the user asks to create a branch, commit, push, and open a PR.
npx skillsauth add gentamura/dotfiles pr-createInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create a pull request from local changes with consistent, low-friction steps.
git push -u origin <branch-name>git pushgit push origin HEAD (explicit form)gh pr create.--base and --head when known.gh pr view --web.git status --short
git rev-parse --abbrev-ref HEAD
git checkout -b <branch-name> # only when requested
git add <files...>
git commit -m "<message>"
# if new branch was created
git push -u origin <branch-name>
# if continuing on current branch
git push
# or explicit
git push origin HEAD
gh pr create --base <base> --head <branch-name> --title "<title>" --body "<summary>"
gh pr view --web
tools
Use this skill to break down requirements into user stories, acceptance criteria, and actionable tasks. Invoke when starting a new feature or receiving new requirements.
devops
Use this skill for release preparation and execution. Invoke when deploying to staging or production environments.
development
Use this skill to review pull requests against coding standards and best practices. Invoke when reviewing code changes before merge.
development
Use this skill to process bot review feedback on a pull request (for example coderabbitai and chatgpt-codex-operator). Invoke when bot comments arrive and the user wants triage, decision making, and implementation of required fixes.