What problem does it solve? Merge and rebase conflicts interrupt development and are often resolved hastily, losing the intent of one side's changes or breaking the build. This Skill provides a disciplined workflow for understanding each conflict's origin and resolving it correctly. ## Core Features & Use Cases - Context Investigation: Inspects git history, commit messages, PRs, and original issues to understand why each conflicting change was made. - Intent-Preserving Resolution: Resolves each conflict hunk by preserving both intents where possible, and documents trade-offs when they are incompatible. - Verification and Completion: Runs the project's automated checks (typecheck, tests, format) after resolving, then stages, commits, and finishes the merge or rebase. - Use Case: You are mid-rebase with conflicts across several files. The Skill traces each conflict back to its source commits, resolves the hunks without inventing new behavior, runs the test suite, and continues the rebase to completion. ## Quick Start Resolve the current in-progress git merge conflict, verify the project checks pass, and finish the merge.