2026-07-08 10:22:40 +02:00

820 B

name, description
name description
create-pr Create or update a GitHub PR following Penpot conventions.

Skill: create-pr

Create or update a GitHub PR. Read and follow:

  • mem:workflow/creating-prs — title format, description structure, writing principles
  • mem:workflow/creating-commits — commit type emojis

When to Use

  • Creating a new PR from a feature branch
  • Updating an existing PR's title or description to match conventions

Prerequisites

  • gh CLI authenticated (gh auth status)

Commands

Create:

gh pr create --repo penpot/penpot --title "<TITLE>" --body-file /tmp/pr-body.md

Update:

gh pr edit <NUMBER> --repo penpot/penpot --title "<TITLE>" --body-file /tmp/pr-body.md

Verify:

gh pr view <NUMBER> --repo penpot/penpot --json title,body