resolve-pr-conflicts
Rebase a PR branch onto the primary branch, resolve any merge conflicts, and force-push to get it ready for merge.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Rebase a PR branch onto the primary branch, resolve any merge conflicts, and force-push to get it ready for merge.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Cut a Bobbit release — preflight checks, version bump, signed tag (CI publishes the root to npm via OIDC on tag push), optional binary sub-packages, GitHub release with generated notes.
Bring up a like-for-like PR Walkthrough panel preview using the exact pack source and Bobbit theme bridge
Pull diagnostics out of the running web client (env, viewport/safe-area, performance, app state) and debug hard-to-inspect mobile / installed-PWA layout bugs
Build an interactive HTML UI in the live preview panel using Bobbit's design system
Build an interactive HTML UI in the live preview panel using Bobbit's design system
Create a high-fidelity interactive HTML design mockup with live preview
| name | resolve-pr-conflicts |
| description | Rebase a PR branch onto the primary branch, resolve any merge conflicts, and force-push to get it ready for merge. |
| argument-hint | ["branch-name"] |
Get a PR branch ready for merge by rebasing it onto the primary branch and resolving any conflicts.
git symbolic-ref refs/remotes/origin/HEAD and extract the branch name.gh pr view --json headRefName -q .headRefName to get the current PR's branch.git fetch origin to get the latest state.git checkout <pr-branch>git rebase origin/<primary-branch>git add <file>.git rebase --continue. Repeat if more conflicts arise.npm run check to verify the resolved code compiles.git push --force-with-lease