원클릭으로
write-pr
Write PR
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Write PR
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Plan and execute a task end-to-end with atomic commits and a draft PR. Breaks work into phases, creates a branch, implements each phase with verification, and opens a PR. Use when the user describes a task they want fully implemented, says "do this", "build this", "make this happen", or wants the full git lifecycle for a change.
Create and switch to a new git branch with the format eli/<short-description>. Use when the user asks to "make a branch", "create a branch", "new branch", "start working on", or wants to begin work on a new task.
Verify, commit, and push changes. Runs cargo check and clippy, then creates a conventional commit. Use when the user says "commit", "commit and push", "save my work", or after completing an implementation phase.
| name | write-pr |
| description | Write PR |
| allowed-tools | ["Bash(gh pr create *)","Bash(git diff *)","Bash(git log *)","Bash(git push *)","Bash(git status *)"] |
Create a draft PR for the current branch with a title and description.
gh pr create --draft --head <branch> --title <title> --body <body>
Format: [TICKET-ID] Short imperative title
[MTS2-2300] Remove cobalt::time module entirely.[NOJIRA].!`cat .github/pull_request_template.md 2>/dev/null || cat <<'DEFAULTTEMPLATE'
## Summary
<!-- One short paragraph explaining why this PR exists and what it does. -->
DEFAULTTEMPLATE`
Use the template above as the structure for the PR body. Fill in or replace placeholder sections with content derived from the actual changes. Preserve any checklists from the template as-is (don't check boxes unless you're confident the item is satisfied). Add a summary section at the top if the template doesn't already include one.