Our review
This skill automatically creates a GitHub Pull Request from the current working changes.
Strengths
- Automates the full PR creation with a formatted title and body
- Prevents accidental pushes on protected branches by suggesting a new branch
- Includes issue references and a structured summary of changes
Limitations
- Requires Git and GitHub CLI (gh) to be installed and configured
- Only works with GitHub repositories
- The PR body draft may need user review before finalization
Use this skill when you have finished changes and want to quickly submit a Pull Request for review.
Avoid this skill if you are using a different Git platform (GitLab, Bitbucket) or need to manually configure advanced PR settings.
Security analysis
CautionThe skill automates git operations and GitHub PR creation, which involves pushing code and authenticating with GitHub; this is legitimate but powerful, and if abused or misconfigured could push unwanted changes or expose credentials.
- •Uses git push and gh pr create which can modify remote repositories and require network access.
- •No explicit mention of authentication or safety checks; assumes environment is properly configured.
Examples
작업 끝났어 PR 올려줘리뷰 요청할게name: github-pr description: 현재 작업 중인 변경사항을 Git 커밋하고 원격 저장소에 푸시한 뒤, "Pull Request(PR)"를 생성합니다. "작업 끝났어 PR 올려줘", "리뷰 요청할게" 등의 상황에서 사용하십시오.
Create GitHub PR
Creates a Pull Request for the current work.
Instructions
-
Branch Check
- If current branch is
mainordevelop:- Ask user for branch name (e.g.,
feature/...). git checkout -b <new-branch>
- Ask user for branch name (e.g.,
- Else: Continue.
- If current branch is
-
Push Changes
- Ensure all changes are committed.
git push origin HEAD
-
Draft PR Body
- Format: Markdown (Korean).
- Content:
- Link Issue (
Closes #ID). - Summary of changes (Why & What).
- Test/Verification status.
- Link Issue (
- Show draft to user.
-
Create PR
gh pr create --base develop --title "제목" --body "본문"
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.