with one click
rebase
Rebase the current branch with smart conflict resolution.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Rebase the current branch with smart conflict resolution.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Reference for the workmux CLI that manages git worktrees and tmux windows as isolated development environments. Use when the user mentions workmux, worktrees, or parallel agent workflows.
Commit, rebase, and merge the current branch.
Orchestrate multiple worktree agents. Spawn, monitor, communicate, and merge.
Launch one or more tasks in new git worktrees using workmux.
Write a PR description using conversation context and open PR creation in browser.
| name | rebase |
| description | Rebase the current branch with smart conflict resolution. |
| disable-model-invocation | true |
| allowed-tools | Read, Bash, Glob, Grep |
Rebase the current branch.
Arguments: $ARGUMENTS
Behavior:
git config branch.<current>.workmux-base), falling back to local main when
none is configuredSteps:
git status --porcelain:
git stash push --include-untracked -m "workmux rebase".git config --get branch.$(git branch --show-current).workmux-base); if
that is empty, target is "main". No fetch.git fetch <remote>. If fetching or target resolution
fails before the rebase begins, restore the stash created in step 1 before
stopping.git rebase <target>git stash pop --index:
Handling conflicts:
git log -p -n 3 <target> -- <file> to see
recent changes to that file in the target branchgit rebase --continue