بنقرة واحدة
create-pr
Prepare and create PR to develop branch. Use when pushing changes and creating a pull request.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Prepare and create PR to develop branch. Use when pushing changes and creating a pull request.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create git commit following project conventions. Use when staging changes and ready to commit.
Route git-related workflows to the right child skill. Use when you need an overview of the git skill family or need help choosing between commit, create-pr, and summarize-pr.
Summarize develop→main merge PR and update PR body. Use when merging develop into main.
| name | create-pr |
| description | Prepare and create PR to develop branch. Use when pushing changes and creating a pull request. |
Prepare and create PR to develop branch.
develop or main, warn and STOPgh CLICURRENT_BRANCH=$(git branch --show-current)
git fetch origin develop
git merge origin/develop --no-edit
❌ develop 브랜치 머지 중 충돌이 발생했습니다.
수동으로 충돌을 해결해주세요:
1. 충돌 파일 확인: git status
2. 충돌 해결 후: git add .
3. 머지 완료: git commit
4. 다시 실행: /create-pr
git push origin HEAD
Analyze commit history and diff, then compose in this format:
Title: <TICKET>: <type>(<scope>): <subject>
Body:
## Summary
변경의 목적과 배경을 1-3문장으로 설명.
## Changes
### 카테고리 1 (예: 파일 구조 변경)
- `path/before/` → `path/after/`
- 구체적인 변경 내용
### 카테고리 2 (예: 기능 추가/수정)
- **ComponentName**: 변경 내용 설명
### API/Export 변경 (해당하는 경우)
```diff
- export {Old} from './old/path';
+ export {New} from './new/path';
```
> **Note**: Breaking changes, 마이그레이션 가이드 등
## Test
- [ ] 구체적인 테스트 항목
Guidelines:
> **Note**:Show the generated PR content to the user using the current interaction surface and request explicit approval before proceeding:
📝 PR 내용을 확인해주세요:
제목: {generated title}
본문:
{generated body}
이대로 PR을 생성/업데이트할까요?
gh pr list --head $(git branch --show-current) --state opengh pr edit to update title/bodygh pr create --base developOn success:
✅ PR이 생성(업데이트)되었습니다!
{PR URL}
develop/([A-Z]+-\d+)/ from branch name