What problem does it solve? Merge and rebase conflicts interrupt git workflows and are often resolved hastily, losing one side's intent or introducing broken code. This Skill provides a disciplined procedure for understanding each conflict's origin and resolving it correctly. ## Core Features & Use Cases - Conflict Investigation: Inspects git history, commit messages, PRs, and original issues to understand why each conflicting change was made. - Intent-Preserving Resolution: Resolves each hunk by preserving both intents where possible, never aborting the merge and never inventing new behavior. - Verification and Completion: Runs the project's automated checks (typecheck, tests, format) after resolution, then stages, commits, and continues the rebase to completion. - Use Case: During a long-running feature branch rebase onto main, conflicts appear across five files. Use this Skill to trace each conflict back to its originating PR, resolve hunks according to the merge's stated goal, and finish the rebase with all checks passing. ## Quick Start Resolve the current in-progress git merge conflict by investigating each conflicting change's origin, resolving every hunk, running the project checks, and completing the merge.