What problem does it solve? Merge and rebase conflicts interrupt development work and are often resolved hastily, losing the intent behind one side of the change or introducing regressions that break the build. ## Core Features & Use Cases - Intent-Preserving Resolution: Traces each conflict back to its primary sources (commit messages, PRs, original issues) so both sides' goals are understood before editing. - Guided Hunk-by-Hunk Workflow: Resolves each conflicting hunk deliberately, preserving both intents where possible and documenting trade-offs where they are incompatible. - Verification Before Completion: Runs the project's automated checks (typecheck, tests, formatting) after resolution and finishes the merge or continues the rebase to completion. - Use Case: You run git rebase main on a long-lived feature branch and hit conflicts across five files. The Skill inspects the conflicting commits, resolves each hunk according to the rebase's stated goal, runs the test suite, and continues the rebase until all commits are applied. ## Quick Start Resolve the current git merge conflict in my repository, then run the tests and finish the merge.