What problem does it solve? Teams often end up with inconsistent branch names, vague commit messages, and messy pull requests that make history hard to read and CI harder to keep green. This Skill standardizes Git conventions for the order-ui project so every commit, branch, and PR follows the same rules. ## Core Features & Use Cases - Branch Naming Enforcement: Applies the Jira-linked format (feature/TRE-XXX-FE-description, bugfix/, hotfix/) with lowercase, hyphen-only naming. - Conventional Commits: Generates commit messages with proper type, project scope (auth, order, payment, printer, etc.), imperative mood, and 72-character limits. - PR and Merge Standards: Produces structured PR bodies with test plans, enforces squash merges, and guides rebase-based conflict resolution. - Use Case: When you finish a payment bug fix, ask for a commit and PR — you get a message like "fix(payment): prevent navigation after failed order creation" plus a complete PR template with ticket reference and checklist. ## Quick Start Ask the assistant to create a branch and commit message for your current change following the project Git conventions.