What problem does it solve? Finishing work on a feature branch requires several manual git steps—committing staged changes, rebasing onto the base branch, resolving conflicts, and merging—which are repetitive and error-prone when done by hand. ## Core Features & Use Cases - Automated Commit: Commits any staged changes using lowercase, imperative-mood messages without conventional commit prefixes. - Guided Rebase: Rebases onto the local base branch (read from git config workmux-base, defaulting to main) with explicit conflict-resolution guidance that preserves changes from both branches. - Workmux Merge: Runs workmux merge --rebase --notification to merge the branch and clean up the worktree and tmux window, with optional --keep and --no-verify flags. - Use Case: After finishing a feature in a workmux-managed worktree, invoke the skill to commit, rebase onto main, and merge in one flow without manually juggling git commands. ## Quick Start Ask the assistant to run the merge skill to commit, rebase, and merge the current branch, optionally passing --keep to retain the worktree.