Our review
Creates a GitHub pull request by gathering context from git history, detecting PR templates, composing a conventional commit title, and generating a structured body with reference links.
Strengths
- Context-aware description using git diff and log
- Automatically detects and fills pull request templates
- Adheres to conventional commit format for the title
- Confirms changes and prompts before pushing and creating
Limitations
- Requires both git and gh CLI to be installed and authenticated
- May involve multiple confirmation steps, which can be verbose
- Does not handle complex workflows like multiple reviewers or advanced labels
Use this skill when you want to quickly create a well-documented pull request without manually drafting all details.
Avoid this skill if you need fine-grained control over the PR content or if your project has a highly customized PR process.
Security analysis
SafeThe skill uses only git and gh CLI commands, does not involve destructive actions, and prompts for user confirmation before pushing, making it safe.
No concerns found
Examples
Create a pull request for the current branch, summarizing the changes and linking to the related issue.Create a pull request using the repository's pull request template.Create a pull request in French with the title and body in French.name: create-pr description: Create a GitHub pull request with context-aware description allowed-tools: Bash(git status *), Bash(git diff *), Bash(git log *), Bash(git rev-parse *), Bash(git push *), Bash(gh repo view *), Bash(gh pr create *), Bash(echo *), Read, Glob, Grep, AskUserQuestion
Pre-fetched context
!git rev-parse --abbrev-ref HEAD
!git status --short
!git ls-files ':(top,icase).github/pull_request_template.md' ':(top,icase).github/pull_request_template/*.md' ':(top,icase)pull_request_template.md'
Instructions
Create a pull request. Follow this flow:
-
Gather context: Get default branch via
gh repo view --json defaultBranchRef -q .defaultBranchRef.name, then rungit log --oneline,git diff --stat, andgit diffagainst it. -
Uncommitted changes: If
git statusabove shows output, ask the user whether to commit them, ignore them, or abort. Do not proceed until answered. -
PR template:
- If a template path is listed,
Readit before writing title/body. - Detect
template_languagefrom headings/instructions/checklists (ignore code, URLs, HTML comments). - Keep template headings/order and keep HTML comments (
<!-- -->). - If no template exists, skip.
- If a template path is listed,
-
Compose PR:
- Title: Conventional Commits, under 72 chars.
- Decide title language before drafting and keep it fixed unless the user requests a change.
- Title language policy: use
template_languagefirst whenever it can be detected. - If the user explicitly asks to override language for the current PR, follow that override.
- If no
template_languageis detected, use: explicit user request > latest substantive user message > English. - Ignore slash commands (for example
/create-pr), code blocks, file paths, and URLs when inferring language. - If language signals conflict or are ambiguous, ask the user which language to use before drafting.
- Keep
type(scope)tokens standard (feat,fix, etc.); localize only the description text. - Body: if template exists, fill its sections. If not, use Summary / Changes / Concerns / References.
- Proactively include any reference links (issues, docs, related PRs) found in conversation history.
-
Confirm: Show the full PR title and body. Ask if the user wants to add links or make any edits — apply and re-confirm. Do not push or create until approved.
-
Push and create: Push (
git push -u origin HEAD) only if there are unpushed commits (git log @{upstream}..HEAD). Create withgh pr create. Return the PR URL.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.