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>
35 lines
872 B
Plaintext
35 lines
872 B
Plaintext
{
|
|
"annotations": {
|
|
"title": "Create repository"
|
|
},
|
|
"description": "Create a new GitHub repository in your account or specified organization",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"autoInit": {
|
|
"description": "Initialize with README",
|
|
"type": "boolean"
|
|
},
|
|
"description": {
|
|
"description": "Repository description",
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"description": "Repository name",
|
|
"type": "string"
|
|
},
|
|
"organization": {
|
|
"description": "Organization to create the repository in (omit to create in your personal account)",
|
|
"type": "string"
|
|
},
|
|
"private": {
|
|
"description": "Whether repo should be private",
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"required": [
|
|
"name"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "create_repository"
|
|
} |