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 -- ., or git reset --hard when 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

Workflow

Phase 1: Analyze (Read-Only)

Installs
2
First Seen
Apr 2, 2026