ワンクリックで
git-rebase
Rebase current branch onto the latest remote base branch, resolving any conflicts and driving the rebase to completion
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Rebase current branch onto the latest remote base branch, resolving any conflicts and driving the rebase to completion
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create a Claude Code rule, skill, or agent — global (~/.claude) or project-local (.claude)
Code review using OpenAI Codex CLI with project context (rules, diff, conventions)
Multi-perspective code review from base branch with 3 independent reviewer agents
Analyze working tree changes, map to existing commits, and create fixup commits for autosquash
Analyze working tree changes, plan logically minimal NEW atomic commits per hunk (no fixup), and execute them
Review every commit message since base branch and add reword fixups where the message needs improvement (non-interactive)
| name | git-rebase |
| description | Rebase current branch onto the latest remote base branch, resolving any conflicts and driving the rebase to completion |
Rebases the current branch onto the latest remote base branch and drives it to completion — if conflicts surface, they are resolved automatically and the rebase is continued until it finishes.
Run the whole rebase to completion yourself. This is the core contract:
/git-resolve or
git rebase --continue themselves. Resolve the conflicts and continue the
rebase on your own.Rebase - Use the Task tool (subagent_type: "git-rebase") to fetch the
remote base branch and start the rebase autonomously. The agent detects the
base branch, fetches it, and runs git rebase origin/<base>, reporting the
outcome.
Branch on the outcome (check git status):
Resolve to completion - Drive the rebase to the finish by running the
/git-resolve workflow: resolve the current step's conflicts (Task tool,
subagent_type: "git-resolve"), run GIT_EDITOR=true git rebase --continue
(or --skip for an empty step), and loop — resolve → continue → resolve —
until no rebase is in progress. Only pause for a genuinely ambiguous conflict
(AskUserQuestion) or a non-conflict failure. Do NOT hand the rebase back to
the user.
Report - Once the rebase is fully complete, report the result in Japanese,
including git log --oneline -10 of the rebased history and a note of any
conflicts that were resolved and how. (Never force-push; leave pushing to the
user.)