with one click
create-pr
Create or update a GitHub PR following Penpot conventions.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create or update a GitHub PR following Penpot conventions.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Evaluate Clojure code via nREPL using the standalone tools/nrepl-eval.mjs CLI tool.
Create or update GitHub issues (from PR, from draft body, retitle existing). Routes to the canonical flow in `mem:workflow/creating-issues`.
Read-only planning and architecture analysis for Penpot — produce a structured implementation plan (Context, Affected modules, Approach, Risks, Testing). Always output to the user; additionally save to plans/YYYY-MM-DD-<title>.md only when the calling agent has write permission.
Refine and improve a user-supplied prompt for maximum clarity and effectiveness using prompt-engineering best practices and Penpot project context. Outputs a rewritten prompt (and brief rationale); never executes the prompt.
Update the project CHANGES.md with issues from a given GitHub milestone, with correct categorization and references.
Port changes from a specific Git commit to the current branch by manually applying the diff, avoiding cherry-pick when it would introduce complex conflicts.
| name | create-pr |
| description | Create or update a GitHub PR following Penpot conventions. |
Create or update a GitHub PR. Read and follow:
mem:workflow/creating-prs — title format, description structure, writing principlesmem:workflow/creating-commits — commit type emojisgh CLI authenticated (gh auth status)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