What problem does it solve? Merging session work back into the base branch involves multiple error-prone steps: committing leftover changes, running the merge in the correct worktree, resolving conflicts, and verifying the result. This Skill guides the AI through that entire git merge workflow safely. ## Core Features & Use Cases - Pre-merge Commit: Detects uncommitted changes in the current worktree and commits them before merging. - Cross-Worktree Merge: Runs git commands against the main worktree using git -C without leaving the current worktree. - Conflict Resolution: Lists conflicted files, resolves conflicts while preserving both sides' intent, and asks the user when uncertain. - Post-merge Validation: Confirms the worktree is clean and the topic branch is fully merged into the base branch. - Use Case: After finishing a feature in an isolated session worktree, ask the AI to merge the topic branch back into the main branch, with conflicts resolved interactively and the result verified. ## Quick Start Ask the AI to merge the current session's topic branch back into the base branch and resolve any conflicts that come up.