Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Create GitHub pull requests using the gh CLI. Use when the user wants to create a new PR, submit code for review, or open a pull request. Trigger keywords - create PR, pull request, new PR, submit for review, code review.
Create pull requests on GitHub using the gh CLI.
gh CLI must be authenticated (gh auth status)<issue-number>-<description>/<username>Run the local pre-commit task before opening a PR:
mise run pre-commit
Before creating a PR, verify:
You're not on main - Never create PRs directly from main:
# Should NOT be "main"
git branch --show-current
Branch follows naming convention - Format: <issue-number>-<description>/<initials>
# Example: 1234-add-pagination/jd
git branch --show-current
Consider squashing commits - For cleaner history, squash related commits before pushing:
# Squash last N commits into one
git reset --soft HEAD~N
git commit -m "feat(component): description"
Ensure your branch is pushed to the remote:
git push -u origin HEAD
npx skills add NVIDIA/OpenShell --skill create-github-prHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.