What problem does it solve?
Enforces a disciplined, test-first git commit workflow so code changes are narrowly scoped, verified, and documented with Conventional Commits to reduce broken builds and noisy history.
Core Features & Use Cases
- Scope hygiene: Stage only intended hunks and avoid drive-by formatting or unrelated edits.
- Quality gates: Run tests, linters, and static analysis and report failures before committing.
- Conventional commits: Draft commits with type(scope): summary to clearly communicate intent.
- Use Case: When a user requests "commit this" after a code edit, follow this workflow to verify, test, and produce a clean, conventional commit.
Quick Start
Ask the assistant to implement the requested code change, run relevant tests and linters, then stage only the intended files and commit with a Conventional Commit message that includes a clear scope.