Smart git commits with conventional commit message generation.
/plugin marketplace add kossakovsky/cc-plugins
/plugin install commit@cc-pluginsGenerate a commit message automatically:
/commit:commitUse a custom commit message:
/commit:commit "feat: add new feature"- Analyzes staged changes with
git diff --staged - Detects the project's commit style from recent history
- Determines the change type (feat, fix, refactor, etc.)
- Generates a conventional commit message
- Asks for approval before committing
Messages follow the format: type(scope): description
Types: feat, fix, refactor, docs, chore, test, style, perf, ci, build
MIT