Creates PRs for managed repos, automatically determining target branches and updating internal tracking systems.
Install
mkdir -p .claude/skills/pr-egregore-labs && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/17329" && unzip -o skill.zip -d .claude/skills/pr-egregore-labs && rm skill.zipInstalls to .claude/skills/pr-egregore-labs
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 current branch targeting the repo's base branch.Key capabilities
- →Determine the target repository for the pull request
- →Resolve the base branch for the pull request
- →Summarize changes between the current and base branch
- →Prompt for a title and description for the pull request
- →Create a pull request using GitHub CLI
- →Track the created pull request in a project graph
How it works
The skill identifies the target repository and base branch, summarizes changes, and then prompts the user for a title and description. It creates the PR using GitHub CLI and tracks it in an internal graph.
Inputs & outputs
When to use pr
- →Create a PR in an Egregore repo
- →Automate project branch tracking
- →Generate PR summaries
About this skill
Create a pull request for current branch targeting the repo's base branch.
What to do
- Determine which repo — if the user mentions a managed repo (listed in
egregore.json→repos[]), create the PR there. Otherwise use the hub. - Resolve the target base branch:
- Egregore hub repo: always
develop - Managed repos: read
base_branchfromegregore.jsonrepos[] config (default"develop")BASE_BRANCH=$(jq -r --arg name "$REPO" '(.repos[]? // empty) | select((if type == "object" then .name else . end) == $name) | if type == "object" then .base_branch // "develop" else "develop" end' egregore.json)
- Egregore hub repo: always
- Summarize branch changes vs base branch
- Prompt for title and description
- Create PR via GitHub CLI:
gh pr create --base "$BASE_BRANCH" - Track PR in graph (fire-and-forget):
WherePROJ_HASH=$(echo -n "$(pwd)" | md5 2>/dev/null || echo -n "$(pwd)" | md5sum 2>/dev/null | cut -d' ' -f1) SID=$(cat "$HOME/.egregore/session-${PROJ_HASH}.id" 2>/dev/null || echo "") GH_USER=$(jq -r '.github_username // empty' .egregore-state.json 2>/dev/null) REPO_NAME=$(jq -r '.repo_name // "egregore"' egregore.json 2>/dev/null) bash bin/graph-op.sh create-pr "$SID" "$PR_NUMBER" "$REPO_NAME" "$GH_USER" "$PR_TITLE" 2>/dev/null &$PR_NUMBERis extracted from thegh pr createoutput URL. - Return PR URL
- Do NOT auto-merge — explicit
/prmeans "please review this"
Example
> /pr
Creating pull request...
Branch: feature/2026-01-20-mcp-authentication
Base: main
Commits: 3 commits ahead of main
Changes: +78 lines, -5 lines, 3 files
Title: Add MCP authentication with API key validation
(from your last commit — edit? y/n)
> n
Description — summarize what this PR does:
> Adds API key validation to MCP server. Keys are checked against env var. Includes tests.
Creating PR via GitHub CLI...
gh pr create --base main --title "..."
✓ PR #42 created: https://github.com/{github_org}/myapp/pull/42
PR targeting main — ready for review.
Next
Share the PR link. Run /handoff if ending your session.
When not to use it
- →When an automatic merge of the pull request is desired
Limitations
- →The skill does not auto-merge pull requests.
How it compares
This skill automates the process of identifying target branches, summarizing changes, and tracking PRs, which differs from manually performing these steps.
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 |
| git-commits | 21 | 3mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by egregore-labs
View all by egregore-labs →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.
git-commits
bonny
Create well-structured git commits in logical chunks following best practices
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.
github-multi-repo
ruvnet
Multi-repository coordination, synchronization, and architecture management with AI swarm orchestration
git-workflow-enforcer
CrazyDubya
Ensures commits follow conventional commits, branch naming conventions, and PR templates. Use when creating commits, branches, or PRs, or when user mentions git workflow.