feat(detmir): ship ops, dlp, 1c and mcp updates

This commit is contained in:
igor04091968
2026-05-27 05:56:43 +03:00
parent 033ae810f3
commit 3042bd5042
85 changed files with 12028 additions and 460 deletions
@@ -4,6 +4,8 @@
"required": [
"headline",
"summary",
"manager_questions",
"management_plan",
"top_risks",
"top_forecasts",
"actions",
@@ -25,6 +27,79 @@
"maxLength": 260
}
},
"manager_questions": {
"type": "array",
"minItems": 4,
"maxItems": 6,
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"question",
"answer",
"recommended_action"
],
"properties": {
"question": {
"type": "string",
"minLength": 1,
"maxLength": 120
},
"answer": {
"type": "string",
"minLength": 1,
"maxLength": 320
},
"recommended_action": {
"type": "string",
"minLength": 1,
"maxLength": 220
}
}
}
},
"management_plan": {
"type": "array",
"minItems": 3,
"maxItems": 5,
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"horizon",
"focus",
"action",
"expected_effect",
"metric"
],
"properties": {
"horizon": {
"type": "string",
"enum": ["today", "week", "30d"]
},
"focus": {
"type": "string",
"minLength": 1,
"maxLength": 160
},
"action": {
"type": "string",
"minLength": 1,
"maxLength": 280
},
"expected_effect": {
"type": "string",
"minLength": 1,
"maxLength": 220
},
"metric": {
"type": "string",
"minLength": 1,
"maxLength": 180
}
}
}
},
"top_risks": {
"type": "array",
"maxItems": 5,