What problem does it solve? Large piles of mixed changes on a branch or working tree are hard to review and risky to merge. This Skill turns one set of changes into several small, reviewer-aligned pull requests without losing any work. ## Core Features & Use Cases - Safe snapshots: Creates a recoverable backup ref with git stash create before moving any work, and never runs destructive git commands without explicit approval. - Ownership-aware slicing: Reads CODEOWNERS and similar ownership files to propose PR boundaries that match natural reviewer responsibilities. - Controlled execution: Stages only named files or hunks, builds isolated branches from the right base, validates each diff, and pushes only after publication approval. - Use Case: You have a dirty working tree on main touching three teams' code. Ask to split it, and get three independent PRs with clean diffs, each routed to the right reviewers. ## Quick Start Split my current uncommitted changes into small reviewable PRs grouped by code ownership.