commit_staged
Stage and commit changes with a custom message while appending "(aider)" to the committer name, enabling clear tracking of AI contributions in your codebase.
Instructions
Commit staged changes with a specific message, appending "(aider)" to the committer name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cwd | No | Optional: The working directory for the git command (defaults to the workspace root). | |
message | Yes | The commit message. |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"description": "Optional: The working directory for the git command (defaults to the workspace root).",
"type": "string"
},
"message": {
"description": "The commit message.",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}