git_format_message
Format commit messages with emojis per the git-emoji-commit convention. Supply commit type, title, and optional details to generate a standardized, emoji-enhanced message.
Instructions
Format a commit message according to the git-emoji-commit convention. Takes commit parameters and returns a properly formatted message with emoji.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | The commit type (feat, fix, docs, etc.) | |
| scope | No | Optional scope (e.g., #123, auth, api) | |
| title | Yes | Brief description in imperative mood (50 chars max) | |
| breaking | No | Whether this is a breaking change | |
| description | No | Optional detailed explanation |