createEpic
Generate and organize top-level tasks (Epics) with planning details, initial task creation, and structured storage paths for efficient project management on IntelliPlan.
Instructions
Creates a new Epic (top-level task) with planning details and optional initial Task creation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
acceptanceCriteria | No | Acceptance criteria for the Epic | |
basePath | Yes | FULL directory path where Epic storage will be created (required, e.g., '/path/to/storage') | |
complexity | No | Complexity of the Epic | |
createTasksFromSteps | No | Create Tasks from the 'tasks' list (default: true) | |
description | Yes | High-level description of the Epic (required) | |
estimatedEffort | No | Estimated effort for the Epic (e.g., S, M, L) | |
goal | No | Specific goal or objective for the Epic | |
priority | No | Priority level | |
tasks | No | Initial high-level tasks (become Task items) | |
testStrategy | No | Overall testing strategy for the Epic |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"acceptanceCriteria": {
"description": "Acceptance criteria for the Epic",
"items": {
"type": "string"
},
"type": "array"
},
"basePath": {
"description": "FULL directory path where Epic storage will be created (required, e.g., '/path/to/storage')",
"type": "string"
},
"complexity": {
"description": "Complexity of the Epic",
"type": "string"
},
"createTasksFromSteps": {
"default": true,
"description": "Create Tasks from the 'tasks' list (default: true)",
"type": "boolean"
},
"description": {
"description": "High-level description of the Epic (required)",
"type": "string"
},
"estimatedEffort": {
"description": "Estimated effort for the Epic (e.g., S, M, L)",
"type": "string"
},
"goal": {
"description": "Specific goal or objective for the Epic",
"type": "string"
},
"priority": {
"description": "Priority level",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"tasks": {
"description": "Initial high-level tasks (become Task items)",
"items": {
"type": "string"
},
"type": "array"
},
"testStrategy": {
"description": "Overall testing strategy for the Epic",
"type": "string"
}
},
"required": [
"description",
"basePath"
],
"type": "object"
}