create-pull-request (cline)
- Dev Workflow
Turns a finished feature branch into a review-ready GitHub pull request — confirming the branch and base, summarising the commits into a description, filling the repo's PR template, and opening it with the `gh` CLI. It is about PUBLISHING your own work for review, not judging someone else's PR, crafting the individual commits, or tagging the release that follows.
A situation it fits
I finished work on a local branch and want to put it somewhere teammates can read and comment; I need to write a concise summary, point it at the right target branch, and publish it on the project's hosting site.
5 scenarios in the bank answer to create-pull-request (cline). The rest are in the game.
Skills it gets confused with
These share a family with create-pull-request (cline), which is another way of saying they are the ones you might reach for by mistake.
- conventional-commit (marcelorodrigo)Shapes the message of the commit you are about to make into the Conventional Commits format — a `type(scope): subject` header with an optional body, footer, and breaking-change marker that downstream tooling can parse. Its job is WORDING one commit; it does not rewrite past history, juggle branches, or assemble the release those commits eventually roll into.
- git-advanced-workflows (wshobson)Reshapes an existing Git history and untangles branches — interactive rebase, cherry-picking, bisecting to the commit that broke something, worktrees, and rescuing lost work through the reflog. It is about MANIPULATING the repository's history and recovering from mistakes, not about how you word a commit, open a pull request, or cut a release.
- release-skills (jimliu)Cuts a versioned release for whatever kind of project you have — detecting the version file (package.json, pyproject.toml, Cargo.toml, and more), bumping the semantic version, updating the changelog, tagging, and publishing a GitHub Release. It handles SHIPPING the release, not the branch surgery, commit wording, or pull-request creation that comes before it.
Knowing what create-pull-request (cline) does is the easy half. Telling it apart from the others under time pressure is the game.
Today's sessioncreate-pull-request (cline) is part of cline/cline. Licence: Apache-2.0. The description above was written for this game, not taken from the skill.