What problem does it solve? Teams often produce inconsistent commit histories, mixed-concern commits, and unclear pull requests, making code review and project history hard to follow. This Skill enforces a structured git workflow so every change is traceable and reviewable. ## Core Features & Use Cases - Conventional Commits: Standardizes commit messages with typed prefixes (feat, fix, docs, refactor, perf, test, chore) and scoped descriptions. - Commit Discipline: Encourages small, frequent, single-concept commits with meaningful messages explaining what changed and why. - Branching & PR Strategy: Defines branch naming (main, feature/, fix/, refactor/) and pull request rules including CI checks before merge. - Use Case: When finishing a bug fix, the agent writes a commit like "fix: race condition in pluginCache" with a body explaining the technical detail, instead of a vague "fix stuff" message. ## Quick Start Ask the agent to commit the current changes following the git-workflow conventions with a proper conventional commit message.