What problem does it solve? It prevents risky Git operations—such as broad staging, accidental secret commits, and unsafe history rewrites—while enforcing consistent Conventional Commits and software configuration management governance across a repository. ## Core Features & Use Cases - Safe Commit Workflow: Stages only explicit file paths, validates message type/scope/length against commit-config.yaml, and splits multi-feature changes into separate commits. - Full CM Governance: Covers branching models (GitHub Flow, GitFlow, trunk-based), merge conflict resolution, worktrees, tags, releases, CODEOWNERS maintenance, and audit posture. - Onboarding Risk Scan: Analyzes churn hotspots, bus factor, bug-prone files, velocity trends, and revert/hotfix frequency when inheriting a repository. - Use Case: When asked to commit staged work, it inspects git status and diffs, blocks likely-secret files like .env or *.pem, then creates a properly formatted Conventional Commit such as "feat(auth): add JWT token refresh". ## Quick Start Ask the assistant to commit your current changes safely using a Conventional Commit message with only the intended files staged.