create_commit_message
Generate and validate conventional commit messages using input answers to standard commit questions, streamlining version control workflows with structured, AI-assisted commit messages.
Instructions
Generate a commit message from a complete answers dictionary.
Args: answers_dict: Dictionary containing all answers to commit questions
Returns: Dict containing the generated message and validation status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
answers_dict | Yes |
Input Schema (JSON Schema)
{
"properties": {
"answers_dict": {
"additionalProperties": true,
"title": "Answers Dict",
"type": "object"
}
},
"required": [
"answers_dict"
],
"title": "create_commit_messageArguments",
"type": "object"
}