87a1110c15
Sort all JSON object keys alphabetically at every level in toolsnaps by unmarshaling and remarshaling. This leverages Go's built-in behavior where json.Marshal automatically sorts map keys alphabetically, ensuring consistent field ordering and eliminating noop churn in diffs. Co-authored-by: SamMorrowDrums <4811358+SamMorrowDrums@users.noreply.github.com>
40 lines
856 B
Plaintext
40 lines
856 B
Plaintext
{
|
|
"annotations": {
|
|
"destructiveHint": true,
|
|
"title": "Delete file"
|
|
},
|
|
"description": "Delete a file from a GitHub repository",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"branch": {
|
|
"description": "Branch to delete the file from",
|
|
"type": "string"
|
|
},
|
|
"message": {
|
|
"description": "Commit message",
|
|
"type": "string"
|
|
},
|
|
"owner": {
|
|
"description": "Repository owner (username or organization)",
|
|
"type": "string"
|
|
},
|
|
"path": {
|
|
"description": "Path to the file to delete",
|
|
"type": "string"
|
|
},
|
|
"repo": {
|
|
"description": "Repository name",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"owner",
|
|
"repo",
|
|
"path",
|
|
"message",
|
|
"branch"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "delete_file"
|
|
} |