Safely inspect a mixed git worktree, split pending changes into task-based commits, push each commit in order, and optionally open a draft PR when explicitly requested.
Use this skill when worktree changes are mixed and the user wants commits separated by job before publishing.
git status -sb, git diff --stat, git branch --show-current, and git remote -v.git status --porcelain=v2 --branch.AGENTS.md if present.git diff -- <path> when boundaries are unclear.git add -A.git add -- <path>....git diff --cached --stat (and git diff --cached if needed).git push -u origin $(git branch --show-current)git pushgh pr create --draft.Report: