ワンクリックで
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 職業分類に基づく
| 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.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.