What problem does it solve? Managing Git operations safely is error-prone: developers risk overwriting unrelated work, committing secrets, pushing broken code, or mangling stacked pull requests. This Skill provides a disciplined, step-by-step Git workflow that preserves work in progress and enforces commit and branch conventions. ## Core Features & Use Cases - Safe Inspect-Branch-Commit-Push Pipeline: Checks working tree state, preserves unrelated changes, stages only intended files, and enforces conventional commit message formats. - Stacked PR Support: Integrates the gh stack GitHub CLI extension to build, submit, sync, and merge chains of small reviewable PRs for large or dependent changes. - Structured Results and Safety Rules: Returns JSON success/error payloads and enforces guardrails like never force-pushing main and never committing credentials. - Use Case: You have a large feature split into auth, API, and frontend layers. Use this Skill to create a stacked branch chain with gh stack, submit review-ready PRs, and keep each layer rebased and mergeable. ## Quick Start Ask the agent to create a feature branch, commit the current changes with a conventional commit message, and push it for review.