원클릭으로
create-pull-request
Creates a GitHub pull request for the current branch
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Creates a GitHub pull request for the current branch
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Debug issues using E2E tests, log analysis, and dev server management
Query ClickHouse observability logs over HTTP API
Iterate on bug hypotheses using Playwright repro scripts, structured logs, and source code analysis
Address unresolved inline diff comments and mark them resolved
Run a long task across multiple agent contexts using breadcrumb progress files
Recursively decompose a task into sub-plans with dependency ordering, then execute in topological waves
| name | Create Pull Request |
| description | Creates a GitHub pull request for the current branch |
| user-invocable | true |
| allowed-tools | bash,read,grep,glob |
Create a pull request for the current branch using the GitHub CLI.
Check the current branch and recent commits to understand what this PR is about:
git log --oneline main..HEAD (or appropriate base branch) to see commitsgit diff --stat main..HEAD to see changed filesDraft a PR title and description:
Create the PR:
gh pr create --title "the title" --body "$(cat <<'EOF'
## Summary
<description>
## Changes
<bullet list of key changes>
EOF
)"
If gh pr create fails because the branch hasn't been pushed, push it first:
git push -u origin HEAD
Then retry the PR creation.
Report the PR URL when done.