create_task
Create a new task on a project with required title and project, optional assignee and due date. Task starts in 'todo' state; update status later if needed.
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 |
|---|---|---|---|
| project | Yes | ||
| title | Yes | ||
| assignee | No | ||
| due_date | No |