workflow_generate_commit_message
Create a properly formatted commit message with type, subject, and optional scope to follow Conventional Commits.
Instructions
Generate a valid commit message following Conventional Commits.
Args: commit_type: Type of commit (feat, fix, docs, etc.) subject: The commit subject/description scope: Optional scope of the commit
Returns: Dictionary with generated commit message
Examples: - commit_type='feat', scope='auth', subject='Add user authentication' -> 'feat(auth): add user authentication' - commit_type='fix', subject='Resolve annotation crash' -> 'fix: resolve annotation crash'
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scope | No | ||
| subject | Yes | ||
| commit_type | Yes |