Generate intelligent commit messages following StyleList94's commit convention
Analyze staged changes and generate a commit message following the project's commit convention.
<type>(<scope>): <subject>
<body>
| Type | Usage | Description |
|---|---|---|
| feat | 32% | New feature or update |
| chore | 30% | Dependencies, releases, config |
| refactor | 12% | Code reorganization |
| ci | 8% | CI/CD workflow changes |
| fix | 5% | Bug fixes |
| docs | 5% | Documentation updates |
| style |
| 1% |
| Code formatting (rare) |
| perf | rare | Performance improvements |
| test | rare | Adding or fixing tests |
Use scope selectively:
(deps): Dependency updates → chore(deps): bump next.js(release): Version releases → chore(release): v1.2.3(security): Security patches → fix(security): patch vulnerabilityfeat: add button componentUse bullet points with type prefixes: