A manual-trigger skill for managing GitHub PRs according to specific repository conventions.
Install
mkdir -p .claude/skills/pr-spideystreet && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/18977" && unzip -o skill.zip -d .claude/skills/pr-spideystreet && rm skill.zipInstalls to .claude/skills/pr-spideystreet
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 or update a GitHub pull request following Medox conventions (author spicode-bot, reviewer spideystreet). Invoke manually with /pr — do NOT trigger automatically.Key capabilities
- →Create a new GitHub pull request
- →Ensure documentation is synchronized with code changes
- →Review commits included in a PR
- →Add a specific reviewer to a PR
How it works
The skill first synchronizes documentation, then reviews commits, and either creates a new PR or updates an existing one based on the current branch. It uses GitHub MCP tools and `gh pr edit` for operations.
Inputs & outputs
When to use pr
- →Creating a new pull request
- →Updating an existing PR
- →Ensuring docs are synced before PR
- →Managing PR reviewers
About this skill
Skill: Pull Request
Create or update a GitHub PR following the conventions defined in .claude/rules/git.md.
Steps
- Pre-flight: docs sync — run
/docs-upfirst to ensure docs are up to date with code changes git log main..HEAD --oneline— review commits included- Push if needed:
git push -u origin <branch> - Check if a PR already exists for the current branch:
- Use
mcp__github__list_pull_requestswithhead: "spideystreet:<branch>"andstate: "open" - If a PR exists → update it (step 5b)
- If no PR exists → create it (step 5a)
- Use
5a. Create PR
- Use
mcp__github__create_pull_request:title:<type>(<scope>): <summary>head: current branchbase:mainbody: see Body format below
- Add reviewer:
gh pr edit <number> --add-reviewer spideystreet
5b. Update PR
- Use
gh pr edit <number>to update--titleand/or--bodyif commits changed the scope - Push new commits (already done in step 3)
- Report the existing PR URL to the user
Body format
## Summary
- <bullet points from commits>
## Test plan
- [ ] `uv run pytest <tests> -v`
- [ ] Manual: <scenario>
🤖 Generated with [Claude Code](https://claude.ai/claude-code)
Rules
- Always prefer GitHub MCP tools (
mcp__github__*) overghCLI for GitHub operations (create PR, list issues, add comments, etc.) - Use
gitCLI only for local operations (log, push, diff, status) - Use
gh pr editfor updating title/body (no MCP equivalent)
When not to use it
- →Automatically triggering PR creation or updates
Limitations
- →Must be invoked manually
- →Requires `mcp__github__list_pull_requests` to check for existing PRs
- →Requires `mcp__github__create_pull_request` for new PRs
How it compares
This skill automates the creation and updating of GitHub PRs with specific conventions and documentation synchronization, ensuring consistency beyond manual PR creation.
Compared to similar skills
pr side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| pr (this skill) | 0 | 4mo | No flags | Intermediate |
| 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.
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.