What problem does it solve? Merge and rebase conflicts stall development when it is unclear why each side changed the code, and resolving them blindly risks losing one side's intent or breaking the build. ## Core Features & Use Cases - Intent-Grounded Resolution: Inspects git history, commit messages, PRs, and original issues to understand why each conflicting change was made before resolving. - Hunk-by-Hunk Resolution: Preserves both intents where possible, picks the side matching the merge's stated goal when incompatible, and never aborts the merge. - Verification and Completion: Runs the project's automated checks (typecheck, tests, format), fixes merge-induced breakage, then stages, commits, and finishes the merge or rebase. - Use Case: You are mid-rebase with conflicts across several files and unsure which side is correct. This Skill traces each conflict back to its originating commit and PR, resolves every hunk, runs the test suite, and completes the rebase. ## Quick Start Resolve the conflicts in my current git rebase, preserving the intent of both branches, then run the tests and finish the rebase.