What problem does it solve? It automates the process of merging work from a session's topic branch back into the base branch, including committing leftover changes, resolving merge conflicts, and verifying the merge result. ## Core Features & Use Cases - Pre-merge Commit: Detects uncommitted changes in the current worktree and commits them before merging. - Conflict Resolution: Lists conflicted files, resolves conflicts while preserving both sides' intent, and stages the resolved files. - Merge Validation: Confirms the main worktree is clean and that the topic branch is fully merged into the base branch. - Use Case: After finishing a feature in an isolated session worktree, merge the topic branch back into the main branch, resolve any conflicts, and verify the merge completed cleanly. ## Quick Start Merge my session's topic branch back into the base branch and resolve any conflicts that come up.