Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add raine/skills --skill "merge"
Install specific skill from multi-skill repository
# Description
Commit, rebase, and merge the current branch.
# SKILL.md
name: merge
description: Commit, rebase, and merge the current branch.
allowed-tools: Bash
Arguments: $ARGUMENTS
Check the arguments for flags:
--keep,-kβ pass--keeptoworkmux merge(keeps the worktree and tmux window after merging)--no-verify,-nβ pass--no-verifytoworkmux merge
Strip all flags from arguments.
This command finishes work on the current branch by:
- Committing any staged changes
- Rebasing onto the base branch
- Running
workmux mergeto merge and clean up
Step 1: Commit
If there are any uncommitted changes (staged or unstaged), stage all changes and commit them. If there are no uncommitted changes, skip the commit step.
Step 2: Rebase
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:
- BEFORE resolving any conflict, understand what changes were made to each
conflicting file in the base branch - For each conflicting file, run
git log -p -n 3 <base-branch> -- <file>to
see recent changes to that file in the base branch - The goal is to preserve BOTH the changes from the base branch AND our branch's
changes - After resolving each conflict, stage the file and continue with
git rebase --continue - If a conflict is too complex or unclear, ask for guidance before proceeding
Step 3: Merge
Run: 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).
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.