What problem does it solve? Inconsistent commit messages, messy branch histories, and poorly handled merge conflicts slow down team collaboration. This Skill provides a structured, repeatable process for everyday git operations so every change follows professional version control standards. ## Core Features & Use Cases - Branching Strategy: Enforces a feature-branch workflow with clear naming conventions like feat/, fix/, and chore/ prefixes, keeping main protected. - Conventional Commits: Formats every commit message using the Conventional Commits specification (feat, fix, docs, refactor, and more) for readable, searchable history. - Conflict Resolution & PR Checklist: Walks through rebase-based syncing, conflict marker resolution, and a pre-merge checklist covering tests, linting, and clean history. - Use Case: When finishing a new login feature, use this Skill to create a feat/auth-jwt-login branch, stage and commit changes with a conventional message, rebase onto the latest main, resolve any conflicts, and verify the PR checklist before opening the pull request. ## Quick Start Ask the agent to create a feature branch, commit your current changes with a conventional commit message, and prepare the branch for a pull request.