validate_mode
Check mode configuration for errors or issues before implementation. Validate inputs like slug, name, role definition, and groups to ensure correct setup without saving changes.
Instructions
Validate a mode configuration without saving it
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | Yes |
Input Schema (JSON Schema)
{
"properties": {
"mode": {
"properties": {
"customInstructions": {
"type": "string"
},
"groups": {
"type": "array"
},
"name": {
"type": "string"
},
"roleDefinition": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"required": [
"slug",
"name",
"roleDefinition",
"groups"
],
"type": "object"
}
},
"required": [
"mode"
],
"type": "object"
}