Opinionated, style-aware AI assistant for crafting and splitting git commits (opencode-based, provider-agnostic).
- AI-generated conventional commits β reads your staged diff and produces a Conventional Commits-compliant message in one command.
- Smart commit splitting β clusters hunks semantically and proposes multiple atomic commits, each selectively staged and applied.
- Gitmoji style support β
standard,gitmoji(emoji + type), andgitmoji-pure(emoji only) modes out of the box. - Refine & reword β iteratively reshape the last commit's wording, or reword any past commit by hash or interactive pick.
- Plugin system β register custom
transformandvalidatehooks to enforce team conventions or post-process candidates. - Privacy-aware diff filtering β three tiers (
low/medium/high) control exactly how much code is sent to the model.
npm install -g @kud/ai-conventional-commit-cli$ git add .
$ ai-conventional-commit
β feat(api): add pagination metadata to list endpoint
$ ai-conventional-commit split
1. refactor(parser): simplify token scanning
2. feat(parser): support negated glob segments
3. test(parser): add cases for brace + extglob combos
$ ai-conventional-commit refine --shorter
$ ai-conventional-commit refine --scope ui
$ ai-conventional-commit reword HEAD
$ ai-conventional-commit models --interactive --save
$ ai-conventional-commit config set style gitmojigit clone https://github.com/kud/ai-conventional-commit-cli.git
cd ai-conventional-commit-cli
npm install
npm run dev -- generateπ Full documentation β ai-conventional-commit-cli/docs