Rebase
Claude Code Plugins, Commands, and Skills
npx -y skills add tony/ai-workflow-plugins --skill rebaseAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Rebase current branch onto trunk (origin/master or origin/main), predict and resolve conflicts
SKILL.md
4.2 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it
Context
- Current branch: !
git branch --show-current - Trunk branch: !
git remote show origin 2>/dev/null | grep 'HEAD branch' | awk '{print $NF}' || echo "master" - Remote refs available: !
git remote -v 2>/dev/null | head -2 - Commits on current branch not on trunk: !
TRUNK=$(git remote show origin 2>/dev/null | grep 'HEAD branch' | awk '{print $NF}' || echo "master"); git log --oneline "origin/${TRUNK}..HEAD" 2>/dev/null || echo "(could not determine commits ahead)" - Diff from trunk (summary): !
TRUNK=$(git remote show origin 2>/dev/null | grep 'HEAD branch' | awk '{print $NF}' || echo "master"); git diff --stat "origin/${TRUNK}" 2>/dev/null || echo "(could not diff against trunk)"
Your Task
Rebase the current branch onto the remote trunk branch. Follow these steps carefully, handling each phase before moving to the next.
Phase 1: Detect trunk branch
Determine the trunk branch name from the context above (the "Trunk branch" value). Store it mentally as TRUNK. It will typically be master or main. If detection failed, try both origin/master and origin/main to see which exists.
Phase 2: Fetch latest and analyze
- Run
git fetch originto get the latest remote state. - Run
git diff origin/${TRUNK}...HEAD --statto see what files the current branch modifies. - Run
git diff origin/${TRUNK}...HEADto see the full diff of changes on this branch. - Run
git log --oneline origin/${TRUNK}..HEADto see commits that will be rebased. - Run
git diff origin/${TRUNK} -- $(git diff --name-only origin/${TRUNK}...HEAD)to check if trunk has also modified any of the same files — these are potential conflict zones.
Report a brief summary of:
- How many commits will be rebased
- Which files were changed on this branch
- Which of those files were ALSO changed on trunk (potential conflicts)
- An assessment of conflict likelihood (none expected / minor / significant)
Phase 3: Execute the rebase
Run:
git pull --rebase origin ${TRUNK} --autostash
If the rebase completes cleanly (exit code 0), skip to Phase 5.
Phase 4: Resolve conflicts (if any)
If conflicts are detected:
-
Run
git statusto see which files have conflicts. -
For each conflicted file: a. Read the file to see the conflict markers (
<<<<<<<,=======,>>>>>>>) b. Understand both sides of the conflict by examining what the branch intended vs what trunk changed c. Resolve the conflict by editing the file — preserve the intent of BOTH changes when possible. When in doubt, prefer the branch's changes (our work) but integrate trunk's changes if they're structural (renames, new parameters, etc.) d. Rungit add <file>to mark it resolved -
Before continuing the rebase, run the project's quality checks. Look for CLAUDE.md or AGENTS.md in the repo root to discover the project's required checks. Common quality gates by ecosystem:
Gate Example commands Formatter ruff format,prettier --write,rustfmt,gofmtLinter ruff check --fix,eslint --fix,clippy,golangci-lintType checker mypy,tsc --noEmit,basedpyrightTests pytest,jest,cargo test,go test ./...If any check fails, fix the issues and re-stage with
git addbefore continuing. -
Run
git rebase --continueto proceed. -
If more conflicts appear, repeat from step 1 of this phase.
-
If the rebase becomes unrecoverable, run
git rebase --abortand report what went wrong.
Phase 5: Verify final state
After the rebase completes successfully:
- Run
git log --oneline -10to confirm the rebased commit history looks correct. - Run
git statusto confirm a clean working tree. - Run the project's quality checks one final time as described in Phase 4 step 3.
- Report the results: how many commits were rebased, whether any conflicts were resolved, and the final state of all quality checks.
Do NOT force-push. Only report the final state and let the user decide on the next step.