Prepare a pull request draft, write a structured PR description, and generate the PR creation command.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add nobodyonlyc/skills --skill ship-pr-create --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ship Pr Create?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/nobodyonlyc-ship-pr-create)More formats (shields.io, HTML) on the badges page.
---
name: ship-pr-create
description: Prepare a pull request draft, write a structured PR description, and generate the PR creation command.
---
Gather git context to prepare a pull request:
```bash
git branch --show-current
git log main..HEAD --oneline 2>/dev/null || git log master..HEAD --oneline
git diff main..HEAD --stat 2>/dev/null || git diff master..HEAD --stat
git diff main..HEAD 2>/dev/null || git diff master..HEAD
```
Based on the output:
1. Analyze all commits and the full diff to understand what this PR does
2. Draft a PR with this structure:
- **Title**: `<type>: <concise summary>` (under 70 chars)
- **Summary**: 2-4 bullet points on what changed and why
- **Test plan**: checklist of what to verify before merging
- **Breaking changes**: list any if present, otherwise omit
3. Ask the user: approve as-is, edit the draft, or create the PR now via:
```bash
gh pr create --title "<title>" --body "<body>"
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...