create_task
Create a new task assigned to a list, feature, or insight. Only a title is required; additional fields like priority, status, and assignees can be set.
Instructions
Create a task and return the created task. A write — each call creates a new task, so don't retry blindly. Omitting list_id uses the org's first list; feature_id / insight_id link it to the AIOProductOS spine. Resolve list/status/feature/insight/member ids via pm_meta first — never guess them. Only title is required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Task title. | |
| list_id | No | List id, from pm_meta (optional; defaults to the org's first list). | |
| priority | No | Priority (optional). | |
| status_id | No | Status id, from pm_meta (optional). | |
| feature_id | No | Link to a feature, id from pm_meta (optional). | |
| insight_id | No | Link to an insight (optional). | |
| description | No | Task description (optional). | |
| assignee_member_ids | No | Member ids to assign, from pm_meta (optional). |