What problem does it solve? Running git operations by hand risks destructive mistakes like force-pushes, history rewrites, or unpropagated hotfixes, and ad-hoc commands skip the confirmation and policy checks teams need. This Skill wraps git work in named lifecycle intents that preview every command, fingerprint repository state, and require explicit confirmation before mutating anything. ## Core Features & Use Cases - Lifecycle Intents: Run start, save, sync, ship, release, hotfix, backport, and status intents that derive branch names and versions from repository policy rather than guesswork. - Preview-and-Confirm Safety: Every mutating intent composes a concrete command sequence, fingerprints the working tree, and aborts if state changes before execution. - Release and Hotfix Rituals: Automate version manifest updates, CHANGELOG drafting, annotated tagging, and hotfix propagation across production, integration, and release branches with halt-on-conflict reporting. - Use Case: A developer finishes a feature and runs the ship intent; the Skill previews the exact merge commands against the integration branch, waits for confirmation, executes, and reports each step's result. ## Quick Start Ask the assistant to commit your current changes with an intelligent message using the do-git save intent, then review and confirm the previewed commands.