generate_commit_message
Create standardized commit messages for projects by specifying the root directory path, ensuring consistent and clear version control practices using MCP Practice.
Instructions
Generate standardized commit message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workingDirectory | Yes | The absolute path of the project root directory, for example: /Users/yourname/projects/yourproject |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"workingDirectory": {
"description": "The absolute path of the project root directory, for example: /Users/yourname/projects/yourproject",
"type": "string"
}
},
"required": [
"workingDirectory"
],
"type": "object"
}