1
0

first commit

This commit is contained in:
2026-01-26 15:20:35 +01:00
commit 1e1a3213df
3 changed files with 992 additions and 0 deletions

51
mstr-commands-schema.json Normal file
View File

@@ -0,0 +1,51 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"commands": {
"type": "array",
"items": {
"$ref": "#/$defs/command"
}
}
},
"required": [
"commands"
],
"$defs": {
"command": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"script": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"configs": {
"type": "array",
"items": {
"type": "string"
},
"additionalProperties": false
}
},
"required": [
"name",
"description",
"script"
]
}
}
}