con un clic
rebase
Rebase the current branch with smart conflict resolution.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Rebase the current branch with smart conflict resolution.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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