원클릭으로
merge-pr
Workflow for rebasing and merging a local branch to main via a GitHub Pull Request.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Workflow for rebasing and merging a local branch to main via a GitHub Pull Request.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Run comprehensive Rust code quality checks including compilation, linting, documentation, and tests. Use after completing code changes and before creating commits.
Enforce the "Clean Imports over Inline Absolute Paths" rule by removing inline crate:: prefixes and adding proper use statements.
Rules and guidelines for creating well-formatted commit messages, including 72-char limits, scope prefixes, and trailer blocks for tasks, PR closing, and attribution.
Zero-allocation string building strategies. Use when formatting strings, generating ANSI codes, or writing hot loops to avoid heap allocations and Formatter state machine overhead.
Run clippy linting, enforce comment punctuation rules, format code with cargo fmt, and verify module organization patterns. Use after code changes and before creating commits.
Standard for writing structured tracing logs behind debug flags.
SOC 직업 분류 기준
| name | merge-pr |
| description | Workflow for rebasing and merging a local branch to main via a GitHub Pull Request. |
This skill codifies the workflow for taking a completed local task branch, pushing it to GitHub, creating a Pull Request, and merging it via rebase.
Use this skill when the user asks to "close the pr by rebasing and merging to main" or explicitly invokes /merge-pr.
git push -f origin HEAD. We use -f because local commits are frequently amended during code reviews.gh pr merge --rebase --delete-branch.git checkout main.git pull.git fetch --prune.git branch -D <branch-name>.