Agent Skills
› penpot/penpot
› create-pr
create-pr
GitHub基于 gh CLI 创建或更新 GitHub PR,遵循 Penpot 项目的标题格式、描述结构及提交规范。支持新功能分支发起 PR 及现有 PR 的元数据修正。
触发场景
从功能分支创建新的 Pull Request
更新现有 PR 的标题或描述以符合项目规范
安装
npx skills add penpot/penpot --skill create-pr -g -y
SKILL.md
Frontmatter
{
"name": "create-pr",
"description": "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 principlesmem: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
ghCLI 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
版本历史
- 2dcf1a8 当前 2026-08-20 19:19


