create-epic
Generate a new epic in Shortcut by specifying its name, owner, description, and team ID, simplifying project management and task organization.
Instructions
Create a new Shortcut epic.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | A description of the epic | |
name | Yes | The name of the epic | |
owner | No | The user ID of the owner of the epic | |
teamId | No | The ID of a team to assign the epic to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}