What problem does it solve? Teams often produce inconsistent commit messages that lack traceability to branches and tickets, making history hard to search and audit. This Skill standardizes every commit to a conventional format prefixed with the branch's numeric ID. ## Core Features & Use Cases - Standardized Commit Format: Enforces the pattern #<BRANCH_ID> <type>(<scope>): <description> so every commit links back to its branch. - Commit Type Taxonomy: Provides a defined set of types (feat, fix, docs, style, refactor, test, chore, perf, ci, build) with clear usage rules. - Pre-Commit Quality Gates: Requires running pnpm fix and pnpm check (Biome) before committing and forbids bypassing hooks with --no-verify. - Use Case: While working on branch feature/249517, stage your changes and let the agent produce a compliant message like #249517 feat(auth): add Google OAuth login support after verifying lint checks pass. ## Quick Start Commit my staged changes following the team's conventional commit standard with the current branch ID.