What problem does it solve? When multiple feature branches each have their own pull request targeting the same base branch, reviewing and merging them one by one is slow and hides integration conflicts. This Skill consolidates all sibling branches into a single local integration branch with merge commits, opens one consolidated PR, and closes the individual PRs. ## Core Features & Use Cases - Consolidated Integration Branch: Merges N sibling branches into one <topic>-master branch using git merge --no-ff, preserving full history. - Guided Conflict Resolution: Provides a rule table for resolving common conflicts, such as keeping the superset of function edits, merging add/add file conflicts, and preferring IntegrityError-safe database writes. - PR Lifecycle Automation: Uses the GitHub CLI (gh) to discover sibling PRs, create the consolidated PR with a structured body, and close the superseded individual PRs with a comment. - Use Case: Tickets RGDEV-183 through RGDEV-186 each have open PRs against the same base branch. Run this Skill to merge all four into one attribution-master branch, open a single reviewable PR showing the full integrated diff, and close the four original PRs. ## Quick Start Merge the sibling branches RGDEV-183, RGDEV-184, RGDEV-185, and RGDEV-186 targeting the base branch RGDEV-205/checkout-flow-final into one consolidated PR.