generate-git-summary
Retrieve summaries of Git changes, including staged or unstaged differences, to streamline version control tracking and updates.
Instructions
Retrieves a summary of current Git changes (diff). Can show staged or unstaged changes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
staged | No | If true, get the summary for staged changes only. Defaults to false (unstaged changes). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"staged": {
"default": false,
"description": "If true, get the summary for staged changes only. Defaults to false (unstaged changes).",
"type": "boolean"
}
},
"type": "object"
}