Simplifies PR creation by gathering context, pushing branches, and applying descriptions.
Install
mkdir -p .claude/skills/pr-brave && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/17309" && unzip -o skill.zip -d .claude/skills/pr-brave && rm skill.zipInstalls to .claude/skills/pr-brave
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Create a pull request for the current branch using `gh`.Key capabilities
- →Review commits and changed files on the current branch
- →Check for association with a GitHub issue
- →Create a pull request using `gh pr create`
- →Generate a concise title and factual body for the PR
How it works
The skill creates a pull request by first reviewing the branch's commits and changed files, then pushing the branch to origin. It uses `gh pr create` to generate a PR with a concise title and factual body, optionally linking to a GitHub issue.
Inputs & outputs
When to use pr
- →Creating branch pull requests
- →Submitting PRs with issue links
About this skill
Create Pull Request
Create a pull request for the current branch using gh.
Current State
- Branch: !
git branch --show-current - Commits on branch: !
git log master..HEAD --oneline - Changed files: !
git diff master...HEAD --stat
Steps
1. Gather context
- Review the commits and changed files above.
- Check if the branch is associated with a GitHub issue (look at branch name, commit messages, or recent context for an issue number).
2. Push the branch
Run git push -u origin HEAD.
3. Create the PR
Use gh pr create with:
- Title: Short, direct summary of the change (under 70 chars).
- Body: A brief, factual summary of what changed and why. No filler. If
there is an associated issue, include
Fix https://github.com/brave/brave-browser/issues/<number>on its own line at the top of the body.
Keep the description concise. Just state what was done.
4. Done
Print the PR URL for the user.
When not to use it
- →When the goal is not to create a pull request for the current branch
- →When a detailed, verbose PR description is required
- →When the branch is not ready to be pushed to origin
Limitations
- →Requires a short, direct title (under 70 characters)
- →Requires a brief, factual summary in the body with no filler
- →Does not support complex PR descriptions or formatting
How it compares
This skill automates and simplifies the PR creation process by aggregating branch information and enforcing a concise, factual description, which is more efficient than manually composing PR details.
Compared to similar skills
pr side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| pr (this skill) | 0 | 3mo | Review | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| dependency-upgrade | 26 | 4mo | Review | Intermediate |
| openspec-onboard | 10 | 5mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by brave
View all by brave →You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
dependency-upgrade
wshobson
Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.
openspec-onboard
studyzy
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools
skill-sync
KyleKing
Syncs Claude Skills with other AI coding tools like Cursor, Copilot, and Codeium by creating cross-references and shared knowledge bases. Invoke when user wants to leverage skills across multiple tools or create unified AI context.
git-commits
bonny
Create well-structured git commits in logical chunks following best practices