What problem does it solve? It prevents messy, oversized commits by guiding you to split work into small, logical, validated changes with clear conventional commit messages. ## Core Features & Use Cases - Atomic Commit Discipline: Enforces one logical change per commit with staged-diff review before committing. - Mixed Worktree Playbook: Groups dirty worktree files into logical slices and commits each separately, using git add -p for mixed hunks. - Conventional Commit Format: Standardizes messages as type[scope]: description with types like feat, fix, docs, refactor, and test. - Use Case: After finishing a feature with tests and docs updated, stage only the related files, run targeted validation, and commit as feat(memory): add support profile scope contract without dragging in unrelated changes. ## Quick Start Ask the assistant to review the current worktree and commit the completed changes as small conventional commits.