
Create Pr
- 294 installs
- 15 repo stars
- Updated August 2, 2026
- marcelorodrigo/agent-skills
Create PR is an agent skill that drafts complete GitHub pull requests with titles, descriptions, linked issues, and test notes for developers who use the GitHub CLI to open reviewer-ready changes.
About
Create PR is version 1.2.0 agent skill from marcelorodrigo/agent-skills that opens GitHub pull requests using engineering conventions. The workflow checks for uncommitted changes, expects a clean commit history, and uses the authenticated GitHub CLI (`gh`) to publish titles, descriptions, linked issues, test notes, and reviewer-ready diffs. Developers reach for Create PR when a local branch is ready but the PR body still needs structured context for reviewers. Create PR integrates with a conventional-commit skill when commits are missing, keeping the handoff from branch work to review consistent.
- PR title and description templates
- Issue and scope linkage
- Test plan and risk notes
- Branch-to-base targeting
- Reviewer-friendly change summaries
Create Pr by the numbers
- 294 all-time installs (skills.sh)
- +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #141 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/marcelorodrigo/agent-skills --skill create-prAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 294 |
|---|---|
| repo stars | ★ 15 |
| Last updated | August 2, 2026 |
| Repository | marcelorodrigo/agent-skills ↗ |
How do you draft a complete GitHub pull request from a branch?
Draft complete pull requests with clear titles, descriptions, linked issues, test notes, and reviewer-ready diffs from local branch work.
Who is it for?
Developers with committed branch work and an authenticated GitHub CLI who want convention-following PR descriptions without manual template filling.
Skip if: Repositories not on GitHub or workflows that cannot use the `gh` CLI and require only local commits without opening a PR.
When should I use this skill?
A feature branch is committed and ready for review but needs a complete GitHub pull request opened via `gh`.
What you get
GitHub pull request with title, description, linked issues, test notes, and published diff
- GitHub pull request with description and test notes
By the numbers
- Skill version 1.2.0 in marcelorodrigo/agent-skills manifest
Files
Create Pull Request
Create pull requests following the best engineering practices.
Requires: GitHub CLI (gh) authenticated and available.
Prerequisites
Before creating a PR, ensure all changes are committed. If there are uncommitted changes, run the commit skill skill({ name: "conventional-commit" }) first to commit them properly.
# Check for uncommitted changes
git status --porcelainIf the output shows any uncommitted changes (modified, added, or untracked files that should be included), invoke the commit skill skill({ name: "conventional-commit" }) before proceeding.
Process
Step 1: Verify Branch State
# Detect the default branch
BASE=$(gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name')
# Check current branch and status
git status
git log $BASE..HEAD --onelineEnsure:
- All changes are committed
- Branch is up to date with remote
- Changes are rebased on the base branch if needed
Step 2: Analyze Changes
Review what will be included in the PR:
# See all commits that will be in the PR
git log $BASE..HEAD
# See the full diff
git diff $BASE...HEADUnderstand the scope and purpose of all changes before writing the description.
Step 3: Write the PR Description
Use this structure for PR descriptions (ignoring any repository PR templates):
<brief description of what the PR does>
<why these changes are being made - the motivation>
<alternative approaches considered, if any>
<any additional context reviewers need>Do NOT include:
- "Test plan" sections
- Checkbox lists of testing steps
- Redundant summaries of the diff
Do include:
- Clear explanation of what and why
- Links to relevant issues or tickets (only if available)
- Context that isn't obvious from the code
- Notes on specific areas that need careful review
Step 4: Create the PR
gh pr create --title "<type>(<scope>): <description>" --body "
<description body here>
"Title format follows commit conventions:
feat(scope): Add new featurefix(scope): Fix the bugrefactor(scope): Refactor something
PR Description Examples
Feature PR
Add Slack thread replies for alert notifications
When an alert is updated or resolved, we now post a reply to the original
Slack thread instead of creating a new message. This keeps related
notifications grouped and reduces channel noise.
Previously considered posting edits to the original message, but threading
better preserves the timeline of events and works when the original message
is older than Slack's edit window.Bug Fix PR
Handle null response in user API endpoint
The user endpoint could return null for soft-deleted accounts, causing
dashboard crashes when accessing user properties. This adds a null check
and returns a proper 404 response.
Refactor PR
Extract validation logic to shared module
Moves duplicate validation code from the alerts, issues, and projects
endpoints into a shared validator class. No behavior change.
This prepares for adding new validation rules without
duplicating logic across endpoints.Guidelines
- One PR per feature/fix - Don't bundle unrelated changes
- Keep PRs reviewable - Smaller PRs get faster, better reviews
- Explain the why - Code shows what; description explains why
Editing Existing PRs
When updating a PR after creation, the skill automatically selects the best approach based on your GitHub CLI version:
- gh 2.82.1+: Uses native
gh pr edit(clean, full-featured) - gh < 2.82.1: Falls back to
gh api(avoids Projects classic deprecation bug)
Check Your Version
# Check GitHub CLI version
gh --versionModern Approach (gh 2.82.1+)
# Update PR description
gh pr edit PR_NUMBER --body "Updated description here"
# Update PR title
gh pr edit PR_NUMBER --title "New Title here"
# Update both
gh pr edit PR_NUMBER --title "new: Title" --body "New description"Legacy Fallback (gh < 2.82.1)
If gh pr edit fails with a "Projects (classic) is being deprecated" error, use the API directly:
# Update PR description
gh api -X PATCH repos/{owner}/{repo}/pulls/PR_NUMBER -f body="
Updated description here
"
# Update PR title
gh api -X PATCH repos/{owner}/{repo}/pulls/PR_NUMBER -f title='New Title here'
# Update both
gh api -X PATCH repos/{owner}/{repo}/pulls/PR_NUMBER \
-f title='new: Title' \
-f body='New description'Note: The Projects (classic) bug was fixed in gh 2.82.1 (October 2025). Upgrade with your package manager if you're on an older version.
Related skills
How it compares
Choose Create PR over generic git prompts when you need GitHub CLI-driven PR creation with linked issues and test notes rather than only a commit message.
FAQ
What does Create PR require before running?
Create PR requires an authenticated GitHub CLI (`gh`) and committed changes on the branch. Version 1.2.0 checks `git status --porcelain` and can invoke a conventional-commit skill when files remain uncommitted.
What does a Create PR run produce on GitHub?
Create PR publishes a GitHub pull request with a clear title, structured description, linked issues, test notes, and the branch diff ready for reviewers using `gh` conventions.