KS
Killer-Skills

create-pr — how to use create-pr how to use create-pr, create-pr setup guide, github pull request automation, n8n check-pr-title CI validation, create-pr alternative, create-pr vs github actions, automated pull request creation, create-pr install, what is create-pr

v1.0.0
GitHub

About this Skill

Ideal for GitHub Integration Agents requiring standardized pull request management with CI validation. create-pr is a GitHub pull request automation skill that formats titles according to the required <type>(<scope>): <summary> format, ensuring compliance with n8n's CI validation rules.

Features

Generates GitHub pull requests with properly formatted titles
Passes n8n's check-pr-title CI validation
Supports multiple PR types, including feat, fix, and perf
Automates PR creation using a standardized title format
Integrates with GitHub for seamless workflow automation

# Core Topics

n8n-io n8n-io
[177.8k]
[55472]
Updated: 3/6/2026

Quality Score

Top 5%
86
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add n8n-io/n8n/create-pr

Agent Capability Analysis

The create-pr MCP Server by n8n-io is an open-source Categories.official integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use create-pr, create-pr setup guide, github pull request automation.

Ideal Agent Persona

Ideal for GitHub Integration Agents requiring standardized pull request management with CI validation.

Core Value

Empowers agents to create properly formatted GitHub pull requests with titles that pass the check-pr-title CI validation, utilizing formats like feat, fix, and perf, and integrating with protocols such as GitHub API.

Capabilities Granted for create-pr MCP Server

Automating pull request creation with validated titles
Submitting changes for review with standardized PR formats
Integrating with CI/CD pipelines for continuous validation

! Prerequisites & Limits

  • Requires GitHub API access
  • CI validation must be configured
  • Specific title format must be followed
SKILL.md
Readonly

Create Pull Request

Creates GitHub PRs with titles that pass n8n's check-pr-title CI validation.

PR Title Format

<type>(<scope>): <summary>

Types (required)

TypeDescriptionChangelog
featNew featureYes
fixBug fixYes
perfPerformance improvementYes
testAdding/correcting testsNo
docsDocumentation onlyNo
refactorCode change (no bug fix or feature)No
buildBuild system or dependenciesNo
ciCI configurationNo
choreRoutine tasks, maintenanceNo

Scopes (optional but recommended)

  • API - Public API changes
  • benchmark - Benchmark CLI changes
  • core - Core/backend/private API
  • editor - Editor UI changes
  • * Node - Specific node (e.g., Slack Node, GitHub Node)

Summary Rules

  • Use imperative present tense: "Add" not "Added"
  • Capitalize first letter
  • No period at the end
  • No ticket IDs (e.g., N8N-1234)
  • Add (no-changelog) suffix to exclude from changelog

Steps

  1. Check current state:

    bash
    1git status 2git diff --stat 3git log origin/master..HEAD --oneline
  2. Analyze changes to determine:

    • Type: What kind of change is this?
    • Scope: Which package/area is affected?
    • Summary: What does the change do?
  3. Push branch if needed:

    bash
    1git push -u origin HEAD
  4. Create PR using gh CLI with the template from .github/pull_request_template.md:

    bash
    1gh pr create --draft --title "<type>(<scope>): <summary>" --body "$(cat <<'EOF' 2## Summary 3 4<Describe what the PR does and how to test. Photos and videos are recommended.> 5 6## Related Linear tickets, Github issues, and Community forum posts 7 8<!-- Link to Linear ticket: https://linear.app/n8n/issue/[TICKET-ID] --> 9<!-- Use "closes #<issue-number>", "fixes #<issue-number>", or "resolves #<issue-number>" to automatically close issues --> 10 11## Review / Merge checklist 12 13- [ ] PR title and summary are descriptive. ([conventions](../blob/master/.github/pull_request_title_conventions.md)) 14- [ ] [Docs updated](https://github.com/n8n-io/n8n-docs) or follow-up ticket created. 15- [ ] Tests included. 16- [ ] PR Labeled with `release/backport` (if the PR is an urgent fix that needs to be backported) 17EOF 18)"

PR Body Guidelines

Based on .github/pull_request_template.md:

Summary Section

  • Describe what the PR does
  • Explain how to test the changes
  • Include screenshots/videos for UI changes

Related Links Section

  • Link to Linear ticket: https://linear.app/n8n/issue/[TICKET-ID]
  • Link to GitHub issues using keywords to auto-close:
    • closes #123 / fixes #123 / resolves #123
  • Link to Community forum posts if applicable

Checklist

All items should be addressed before merging:

  • PR title follows conventions
  • Docs updated or follow-up ticket created
  • Tests included (bugs need regression tests, features need coverage)
  • release/backport label added if urgent fix needs backporting

Examples

Feature in editor

feat(editor): Add workflow performance metrics display

Bug fix in core

fix(core): Resolve memory leak in execution engine

Node-specific change

fix(Slack Node): Handle rate limiting in message send

Breaking change (add exclamation mark before colon)

feat(API)!: Remove deprecated v1 endpoints

No changelog entry

refactor(core): Simplify error handling (no-changelog)

No scope (affects multiple areas)

chore: Update dependencies to latest versions

Validation

The PR title must match this pattern:

^(feat|fix|perf|test|docs|refactor|build|ci|chore|revert)(\([a-zA-Z0-9 ]+( Node)?\))?!?: [A-Z].+[^.]$

Key validation rules:

  • Type must be one of the allowed types
  • Scope is optional but must be in parentheses if present
  • Exclamation mark for breaking changes goes before the colon
  • Summary must start with capital letter
  • Summary must not end with a period

Related Skills

Looking for an alternative to create-pr or building a Categories.official AI Agent? Explore these related open-source MCP Servers.

View All

flags

Logo of facebook
facebook

flags is a feature flag management system that enables developers to check flag states, compare channels, and debug feature behavior differences across release channels.

243.6k
0
Design

extract-errors

Logo of facebook
facebook

extract-errors is a skill that assists in extracting and managing error codes in React applications using yarn extract-errors command.

243.6k
0
Design

fix

Logo of facebook
facebook

fix is a technical skill that resolves lint errors, formatting issues, and ensures code quality in declarative, frontend, and UI projects

243.6k
0
Design

flow

Logo of facebook
facebook

Flow is a type checking system for JavaScript, used to validate React code and ensure consistency across applications

243.6k
0
Design