en un clic
rebase
Rebase the current branch with smart conflict resolution.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Rebase the current branch with smart conflict resolution.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
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