원클릭으로
pr-vcs
Opens a vcs pull request. Should rarely be called directly.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Opens a vcs pull request. Should rarely be called directly.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a feature branch using this repo's branch-naming conventions.
Creates a new vcs branch. Should rarely be called directly.
Decompose the working tree into clean commits and open a PR. Use when the user asks to ship the current change end-to-end.
Create a commit following this repo's conventions (Conventional Commits). Use when the user asks to commit changes. Optional file list scopes the commit.
Creates a vcs commit. Should rarely be called directly.
Partition the current working tree into the smallest coherent commit chunks. Use when a diff spans multiple concerns and needs to be split.
| name | pr-vcs |
| description | Opens a vcs pull request. Should rarely be called directly. |
| allowed-tools | Bash |
| argument-hint | <title> <body-file> |
Infra-layer wrapper around gh pr create. Does not write the PR body or
decide when to open the PR — it just runs the shell call with consistent
flags and figures out the base branch.
Invoked by the pr capability skill after that skill has rendered the PR
body from the repo's template. You usually do not invoke this directly.
Delegate to the script:
.claude/skills/pr-vcs/scripts/create-pr.sh "<title>" <body-file>
<title> — PR title (typically the Conventional-Commits subject of the
first commit on the branch).<body-file> — path to a file containing the fully-rendered PR body.
Passing a file (rather than an inline string) keeps multi-line bodies
clean in the shell.gh pr create --base <detected-base> where the base is whatever
gh repo view --json defaultBranchRef -q .defaultBranchRef.name reports.