원클릭으로
merge-pr
Merge a pull request using squash and merge, delete the remote branch, and pull latest changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Merge a pull request using squash and merge, delete the remote branch, and pull latest changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | merge-pr |
| description | Merge a pull request using squash and merge, delete the remote branch, and pull latest changes |
| argument-hint | [PR number or URL] |
| allowed-tools | Bash(gh:*), Bash(git:*) |
Merge the specified pull request following this exact workflow:
Squash and merge the PR (no merge commits):
gh pr merge <PR> --squash --delete-branch
--squash to combine all commits into a single commit--delete-branch to automatically delete the remote branch after mergingSwitch to the main branch and pull latest changes:
git checkout main && git pull --prune
--prune removes any stale remote-tracking branches that no longer exist on the remoteClean up the local branch (if it exists):
git branch -d <branch-name>
Report the result to the user:
Use when the user asks to take on, work on, or pick up a Linear issue - fetches issue details and sets up an isolated git worktree before starting implementation
Work on LeetCode problems in the ~/leetcode directory
Start the clawdbot gateway and show status
Open a new tab in iTerm, optionally start Claude with instructions
A simple hello world skill that demonstrates basic skill creation
Navigate to ~/kraken directory, initialize claude, and show local changes