What problem does it solve? Large piles of changes on a single branch are hard to review and risky to merge. This Skill analyzes your current work against the default branch and proposes a plan to split it into small, independent, reviewable PRs before touching any git state. ## Core Features & Use Cases - State Analysis: Compares committed and uncommitted work against the repo's default branch and summarizes the real slices of change. - Ownership-Aware Splitting: Reads CODEOWNERS and other ownership files to align PR boundaries with natural reviewer groups. - Safe Execution: Saves a recoverable snapshot via git stash refs before moving work, stages only named files or hunks, and never runs destructive git commands without approval. - Use Case: You have a week of mixed changes on main spanning three teams. Ask to split the work, approve the proposed plan, and get three independent PRs each routed to the right reviewers. ## Quick Start Ask the assistant to split the current changes on this branch into small reviewable PRs and propose a split plan first.