create-epic
Create a new Shortcut epic to organize and track large work initiatives, assign ownership, and coordinate team projects within your workflow management system.
Instructions
Create a new Shortcut epic.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the epic | |
| owner | No | The user ID of the owner of the epic | |
| description | No | A description of the epic | |
| teamId | No | The ID of a team to assign the epic to |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "A description of the epic",
"type": "string"
},
"name": {
"description": "The name of the epic",
"type": "string"
},
"owner": {
"description": "The user ID of the owner of the epic",
"type": "string"
},
"teamId": {
"description": "The ID of a team to assign the epic to",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}