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>
33 lines
735 B
Plaintext
33 lines
735 B
Plaintext
{
|
|
"annotations": {
|
|
"title": "Create Gist"
|
|
},
|
|
"description": "Create a new gist",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"content": {
|
|
"description": "Content for simple single-file gist creation",
|
|
"type": "string"
|
|
},
|
|
"description": {
|
|
"description": "Description of the gist",
|
|
"type": "string"
|
|
},
|
|
"filename": {
|
|
"description": "Filename for simple single-file gist creation",
|
|
"type": "string"
|
|
},
|
|
"public": {
|
|
"default": false,
|
|
"description": "Whether the gist is public",
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"required": [
|
|
"filename",
|
|
"content"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "create_gist"
|
|
} |