pr
Create a pull request for the current branch using the project's PR template
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a pull request for the current branch using the project's PR template
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Process issues sequentially: /dev per issue in isolated sub-agent → CI wait → merge → next
E2E development: investigate → dig → decompose → implement → test → review → PR
Break a task into ordered subtasks with dependencies
Investigate codebase for an issue in a forked context (context isolation)
Clarify ambiguities in plans with structured questions and auto-decide rules
Audit codebase for tech debt, code quality, and architecture issues — then create GitHub Issues
| name | pr |
| description | Create a pull request for the current branch using the project's PR template |
| user-invocable | true |
| disable-model-invocation | true |
| allowed-tools | ["Read","Grep","Glob","Bash(git status)","Bash(git diff:*)","Bash(git log:*)","Bash(git push:*)","Bash(gh pr create:*)","Bash(gh issue view:*)"] |
Create a pull request for the current branch.
git status and git diff to understand all changes-u if neededgit log and git diff <base>...HEAD to understand ALL commits.github/pull_request_template.md if it existsgh pr create, include changelog entry in bodyFrom step 3 commits, generate a changelog entry categorized by type:
### Changelog
- **Added**: {new features}
- **Changed**: {modifications to existing features}
- **Fixed**: {bug fixes}
- **Removed**: {removed features}
Include this in the PR body after the description. If a CHANGELOG.md exists in the project root, prepend the entry under the ## [Unreleased] section.
#{Issue} {concise description} (under 70 chars)Closes #XX in body if applicable