What problem does it solve? Merge and rebase conflicts interrupt development and are often resolved hastily, losing one side's intent or introducing regressions. This Skill provides a disciplined workflow to understand each conflicting change, resolve hunks correctly, and verify the result with the project's automated checks. ## Core Features & Use Cases - State Inspection: Examines the current merge/rebase state, git history, and conflicting files before touching anything. - Intent-Driven Resolution: Traces each conflict back to commit messages, PRs, and original issues so resolutions preserve both intents where possible, and never invents new behavior. - Verification and Completion: Runs the project's typecheck, tests, and formatting after resolution, then stages, commits, and 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 walks through each hunk, checks the original PRs for intent, resolves them, runs the test suite, and finishes the rebase cleanly. ## Quick Start Resolve the current git merge conflict in this repository, preserving the intent of both branches, then run the project's checks and finish the merge.