원클릭으로
rebase
Rebase current branch onto a target branch (default master), resolve merge conflicts, and summarize resolutions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Rebase current branch onto a target branch (default master), resolve merge conflicts, and summarize resolutions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a single-file HTML artifact (status report, slide deck, prototype, throwaway editor, flowchart, etc.) and open it in the browser. Use when the user wants a one-off visual artifact instead of markdown — for sharing, reference, or interactive exploration.
Gather context from the codebase and (optionally) the web, then propose multiple ways to move forward with tradeoffs, relative impact, and effort. Use when user wants to explore options, weigh approaches, or asks "what are my options" / "how should I tackle this" before committing to a plan.
Propose a concrete plan to cut a branch and implement a change as one or more atomic commits, grounded in the current codebase and (optionally) outside research. Use when user wants a step-by-step implementation plan, asks "propose a plan" / "how would you implement this", or is ready to move from discussion to execution.
Summarize what shipped over a date range, commit range, or release tag — synthesizes git log, GitHub PRs, and Linear issues into a single markdown brief.
View a Sentry issue by short ID (e.g. PROJECT-123) or URL. Shows details, status, latest event, and tag distribution. Use when user wants to view, check, or look up a Sentry issue, error, or event.
Break a PRD into independently-grabbable GitHub issues using tracer-bullet vertical slices. Use when user wants to convert a PRD to issues, create implementation tickets, or break down a PRD into work items.
| name | rebase |
| description | Rebase current branch onto a target branch (default master), resolve merge conflicts, and summarize resolutions |
| argument-hint | [target-branch] |
git branch --show-currentgit statusgit log --oneline -10Rebase the current branch onto $ARGUMENTS (default: master if no argument given). Resolve any merge conflicts and summarize all resolutions.
Pre-flight checks
git status to confirm the working tree is clean (no uncommitted changes). If dirty, stop and ask the user to commit or stash first.master. If master doesn't exist, try main.Fetch and rebase
git fetch origin to ensure the target branch is up to date.git rebase origin/<target> (prefer the remote tracking branch).Conflict resolution loop
ours = current branch, theirs = target branch).git add.git rebase --continue after resolving all conflicts in the current commit.Summary report
--skip or --abort without explicit user approval.git rebase --continue with --no-verify.