What problem does it solve? Merge and rebase conflicts interrupt development workflows and require careful manual inspection of conflict markers, branch states, and competing changes. This Skill guides an AI agent through detecting conflicts, analyzing each conflicted region, proposing resolutions, and completing the merge or rebase operation safely. ## Core Features & Use Cases - Conflict Detection: Identifies merge or rebase state via git status, MERGE_HEAD, and rebase directories, then lists all conflicted files. - Guided Resolution: Analyzes conflict markers (<<<<<<<, =======, >>>>>>>), explains both sides of each conflict, and presents a resolution plan before editing. - Operation Completion: Stages resolved files and finishes the workflow with git commit for merges or git rebase --continue for rebases, with abort options available. - Use Case: After running git merge feature-branch and hitting conflicts in three source files, invoke this Skill to review each conflict, choose resolutions, and complete the merge commit. ## Quick Start Ask the agent to resolve the git merge conflicts in the current branch and walk you through each conflicted file before committing.