yg_task_create
Create a task in a column. Define title, description, assignees, deadline, subtasks, and checklists.
Instructions
Create a task in a column.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | ||
| title | Yes | ||
| archived | No | ||
| assigned | No | User ids to assign. | |
| columnId | Yes | ||
| deadline | No | ms epoch or ISO date. | |
| subtasks | No | Subtask (task) ids. | |
| completed | No | ||
| checklists | No | Checklists, each { title, items: [{ title, isCompleted }] }. | |
| description | No | Task description. RENDERED AS HTML, not markdown and not plain text — newlines are ignored and plain text collapses into one wall of text in the UI. Use tags: <p> paragraphs, <b> bold, <i> italic, <ul>/<ol> + <li> lists, <br> line break, <a href> links. Example: "<p><b>Goal.</b> Ship it.</p><ul><li>step one</li><li>step two</li></ul>". Reading a task back returns the same HTML. |