split-pr
SKILL.md
Split PR Skill
Safely extracts a subset of changes from your current branch into a separate, focused pull request.
Safety Rules (CRITICAL)
Never Do This
- NEVER run
git stash,git checkout -- ., orgit reset --hardwhen there are staged or unstaged changes - NEVER use
git checkout <ref> -- <path>to investigate other branches - this modifies the working tree
Always Do This
- USE READ-ONLY COMMANDS to investigate:
git show,git diff,git log - COMMIT or confirm clean state before any branch operations
- CREATE new branch before modifying files