Creates a GitHub PR for the current branch, including an automated summary and test plan.
Install
mkdir -p .claude/skills/pr-ohah && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11877" && unzip -o skill.zip -d .claude/skills/pr-ohah && rm skill.zipInstalls to .claude/skills/pr-ohah
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.
현재 브랜치의 변경사항을 기반으로 GitHub Pull Request를 생성해주세요.Key capabilities
- →Check for uncommitted changes
- →Review current branch commit history
- →Identify all changes relative to main
- →Draft PR title and body based on changes
- →Assign PR to 'ohah' and add appropriate labels
How it works
The skill checks the Git status, analyzes changes, drafts a PR title and body, pushes to remote, and creates a GitHub PR with a specific assignee and labels.
Inputs & outputs
When to use pr
- →Open a pull request for a feature branch
- →Generate PR summary and test plan
- →Automate PR cleanup tasks
About this skill
현재 브랜치의 변경사항을 기반으로 GitHub Pull Request를 생성해주세요.
git status로 커밋되지 않은 변경사항이 있는지 확인하고, 있으면 커밋 먼저 진행git log main..HEAD로 현재 브랜치의 커밋 히스토리 확인git diff main...HEAD로 전체 변경사항 파악- 변경사항을 분석하여 PR 제목과 본문 작성
- 리모트에 push 후
gh pr create로 PR 생성 - PR에 assignee를
ohah로, 적절한 label을 추가
PR 본문 형식:
## Summary
<변경사항 요약 1-3줄>
## Test plan
<테스트 체크리스트>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
PR 생성 후:
gh pr edit --add-assignee ohahgh pr edit --add-label <적절한 라벨>(enhancement, bug, documentation 등)
When not to use it
- →When there are uncommitted changes
- →When the user does not want the PR assigned to 'ohah'
- →When specific labels are not desired
Limitations
- →Requires all changes to be committed before execution.
- →The PR will be assigned to 'ohah'.
- →The PR body follows a specific format including a summary and test plan.
How it compares
This skill automates the PR creation process, including drafting content and setting specific metadata like assignee and labels, which simplify the workflow compared to manual GitHub interface usage.
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 | Beginner |
| fix-pr | 1 | 4mo | Review | Intermediate |
| resolve-checks | 1 | 6mo | Review | Intermediate |
| agent-github-pr-manager | 1 | 6mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
fix-pr
AztecProtocol
Fix a failing PR by analyzing CI logs and fixing errors. Autonomous workflow that identifies failures, rebases, fixes issues, and pushes.
resolve-checks
flowglad
Resolve all failing CI checks and address PR review feedback on the current branch's PR. Runs tests locally, fixes failures, incorporates valid review comments, and resolves addressed feedback. Use when CI is red, after receiving PR feedback, or before merging.
agent-github-pr-manager
ruvnet
Agent skill for github-pr-manager - invoke with $agent-github-pr-manager
agent-github-modes
ruvnet
Agent skill for github-modes - invoke with $agent-github-modes
agent-pr-manager
ruvnet
Agent skill for pr-manager - invoke with $agent-pr-manager
git-pr-workflows-git-workflow
sickn33
Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern g