From workmux-status
Rebases current branch on local main, remote branch, or specified branch with smart conflict resolution. Handles fetch, rebase, and conflict resolution using target branch history.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workmux-status:rebaseThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
<!-- Customize conflict resolution strategy to match your preferences. -->
Rebase the current branch.
Arguments: $ARGUMENTS
Behavior:
Steps:
git fetch <remote>git rebase <target>Handling conflicts:
git log -p -n 3 <target> -- <file> to see
recent changes to that file in the target branchgit rebase --continuenpx claudepluginhub raine/workmux --plugin workmux-statusAutomates git rebase on main/master: fetches updates, rebases current branch, intelligently resolves conflicts, and force-pushes with lease. Use before PRs or merges.
Rebases current branch against target (default: main) to incorporate upstream changes. Stops on conflicts; --fix mode adds autonomous resolution and test-fix loops.
Rebases the current feature branch onto the base branch (main/master/develop) to keep it up-to-date and prevent merge conflicts.