What problem does it solve? Merge and rebase conflicts interrupt development and are often resolved hastily, losing the intent behind one side of the change. This Skill provides a disciplined workflow for understanding each conflict's origin, resolving every hunk correctly, and finishing the merge safely. ## Core Features & Use Cases - Intent-Driven Resolution: Traces each conflicting change back to its commit messages, PRs, and original issues before touching code. - Structured Five-Step Workflow: Inspects merge state, researches primary sources, resolves hunks, runs project checks (typecheck, tests, format), and completes the merge or rebase. - Use Case: You run git rebase main on a long-lived feature branch and hit conflicts across several files. The Skill walks through each conflict, preserves both intents where possible, verifies the test suite passes, and continues the rebase to completion. ## Quick Start Resolve the current in-progress git merge conflict in this repository, preserving the intent of both branches and running the project's checks before committing.