From workmux-status
Commits all changes, rebases onto the base branch (default main), and merges via workmux with guided conflict resolution.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workmux-status:mergeThis 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 the commit style and rebase behavior to match your workflow. -->
Arguments: $ARGUMENTS
Check the arguments for flags:
--keep, -k → pass --keep to workmux merge (keeps the worktree and tmux window after merging)--no-verify, -n → pass --no-verify to workmux mergeStrip all flags from arguments.
Commit, rebase, and merge the current branch.
This command finishes work on the current branch by:
workmux merge to merge and clean upCheck for staged, unstaged, and untracked changes with git status --porcelain. If
there are changes, stage all of them with git add -A, review the staged diff,
and commit. Use lowercase, imperative mood, no conventional commit prefixes.
Skip if the working tree is clean.
Get the base branch from git config:
git config --local --get "branch.$(git branch --show-current).workmux-base"
If no base branch is configured, default to "main".
Rebase onto the local base branch (do NOT fetch from origin first):
git rebase <base-branch>
IMPORTANT: Do NOT run git fetch. Do NOT rebase onto origin/<branch>. Only rebase onto the local branch name (e.g., git rebase main, not git rebase origin/main).
If conflicts occur:
git log -p -n 3 <base-branch> -- <file> to
see recent changes to that file in the base branchgit rebase --continueRun: workmux merge --rebase --notification [--keep] [--no-verify]
Include --keep only if the --keep flag was passed in arguments.
Include --no-verify only if the --no-verify flag was passed in arguments.
This will merge the branch into the base branch and clean up the worktree and
tmux window (unless --keep is used).
npx claudepluginhub raine/workmux --plugin workmux-statusRebases the current Git branch with smart conflict resolution, preserving changes from both branches. Supports workmux base branches, origin, and local targets.
Merges a source branch into the current working branch with preflight checks, conflict handling, optional session documentation, and targeted validation.
Resolves active git merge or rebase conflicts by analyzing commit history, understanding intent, and preserving both changes when possible.