create_task
Add a new task to a project, specifying title, optional assignee and due date. Tasks start in 'todo' status. Returns the task ID for later reference.
Instructions
Create a new task on a project. Use this when asked to add a work item, to-do, or
action item. project (required) and assignee (optional) accept a name, a unique
name fragment, or an id; due_date is optional in YYYY-MM-DD format. New tasks
always start in the 'todo' state — use update_task_status afterwards if a different
status is needed. Returns the created task including its id; mention the id so the
user can refer to the task later. The task is created in the system selected by
OPS_TASK_BACKEND (the mock platform by default, or ClickUp).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| project | Yes | ||
| assignee | No | ||
| due_date | No |