Files
github--github-mcp-server/pkg/github/__toolsnaps__/update_gist.snap
copilot-swe-agent[bot] 87a1110c15 Implement recursive JSON key sorting for toolsnaps
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>
2026-01-15 16:15:39 +01:00

33 lines
697 B
Plaintext

{
"annotations": {
"title": "Update Gist"
},
"description": "Update an existing gist",
"inputSchema": {
"properties": {
"content": {
"description": "Content for the file",
"type": "string"
},
"description": {
"description": "Updated description of the gist",
"type": "string"
},
"filename": {
"description": "Filename to update or create",
"type": "string"
},
"gist_id": {
"description": "ID of the gist to update",
"type": "string"
}
},
"required": [
"gist_id",
"filename",
"content"
],
"type": "object"
},
"name": "update_gist"
}