getEpicOverview
Generate a detailed overview of an Epic, its tasks, and related information with customizable modes like fullOverview, suggestNext, and verify. Includes optional diagrams and verbosity levels for insights.
Instructions
Provides a detailed, easy-to-read overview of an Epic, its tasks, and related information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
basePath | Yes | FULL directory path for storage (required, e.g., '/path/to/storage') | |
diagramTypes | No | Specific diagram types to include (if empty and includeDiagrams=true, includes all) | |
epicId | No | Epic ID (required for 'fullOverview', 'verify') | |
includeDiagrams | No | Include Mermaid diagrams (for 'fullOverview') | |
mode | No | Information mode (required) | fullOverview |
verbosity | No | Level of detail for 'fullOverview' | detailed |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"basePath": {
"description": "FULL directory path for storage (required, e.g., '/path/to/storage')",
"type": "string"
},
"diagramTypes": {
"description": "Specific diagram types to include (if empty and includeDiagrams=true, includes all)",
"items": {
"type": "string"
},
"type": "array"
},
"epicId": {
"description": "Epic ID (required for 'fullOverview', 'verify')",
"format": "uuid",
"type": "string"
},
"includeDiagrams": {
"default": true,
"description": "Include Mermaid diagrams (for 'fullOverview')",
"type": "boolean"
},
"mode": {
"default": "fullOverview",
"description": "Information mode (required)",
"enum": [
"fullOverview",
"suggestNext",
"verify"
],
"type": "string"
},
"verbosity": {
"default": "detailed",
"description": "Level of detail for 'fullOverview'",
"enum": [
"summary",
"detailed",
"full"
],
"type": "string"
}
},
"required": [
"basePath"
],
"type": "object"
}