create-pull-request

Community

Generate perfect GitHub PRs, fast and compliant.

AuthorBerryKuipers
Version1.0.0
Installs0

System Documentation

What problem does it solve?

Manually creating pull requests with all required details, proper issue linking, and quality metrics is time-consuming and prone to errors. This Skill automates the PR creation process, ensuring adherence to project standards.

Core Features & Use Cases

  • Automated PR Body: Gathers metadata (issue number, files changed, audit score, test coverage) and drafts a comprehensive PR body using a template.
  • Issue Linking Validation: Critically validates issue linking format (e.g., Fixes #123) to ensure GitHub auto-closes issues.
  • gh CLI Integration: Creates the pull request using the GitHub CLI, ensuring consistency and automation.
  • Use Case: After completing feature implementation and all quality gates pass, use this Skill to instantly generate a compliant and informative pull request, ready for review.

Quick Start

Assuming variables like FEATURE_TITLE, PR_BODY, BRANCH_NAME are set

from previous workflow steps.

The skill will execute a command similar to:

gh pr create \

--title "feat: [FEATURE_TITLE]" \

--body "[PR_BODY_FROM_STEP_2]" \

--base development \

--head [BRANCH_NAME]

Dependency Matrix

Required Modules

gitgh CLI

Components

references

💻 Claude Code Installation

Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.

Please help me install this Skill:
Name: create-pull-request
Download link: https://github.com/BerryKuipers/claude-code-toolkit/archive/main.zip#create-pull-request

Please download this .zip file, extract it, and install it in the .claude/skills/ directory.
View Source Repository