auto_commit_changes
Automatically commit AI-generated changes in VS Code with a specified message, track specific files, and optionally amend to the current session commit.
Instructions
Automatically commit AI-made changes with tracking
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amendSession | No | Amend to current session commit | |
files | No | Specific files to commit | |
message | Yes | Commit message |
Input Schema (JSON Schema)
{
"properties": {
"amendSession": {
"description": "Amend to current session commit",
"type": "boolean"
},
"files": {
"description": "Specific files to commit",
"items": {
"type": "string"
},
"type": "array"
},
"message": {
"description": "Commit message",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}