AES Encryption Explained: How It Works and Why It Matters
Jun 23, 2026
Generate standardized Git commit messages.
Copy the message above and paste it into your terminal: git commit -m "..."
Conventional Commits is a specification for standardized commit messages. It provides an easy set of rules for creating an explicit commit history, which makes it easier to write automated tools on top of. The format is:
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
This convention is used by tools like semantic-release to automatically determine version bumps and generate changelogs.
feat is for a new feature for the user, not a new feature for build script. fix is for a bug fix for the user. Other types like chore, docs, etc. are for changes that don't affect the end user.
No. All processing happens in your browser. The tool works entirely offline after the initial page load.
Yes. Conventional Commits are the standard input for semantic-release. Analysis of commit types determines the next version number (MAJOR.MINOR.PATCH) and generates the changelog automatically.
Blog
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026