create_task
Create a new task in a specified project. Provide project ID, title, and optional fields like priority, description, estimated time, and acceptance criteria; returns the task with its ID.
Instructions
Create a new task in a project. Returns the created task with its ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Title of the task | |
| priority | No | Priority level (0-5, higher is more important) | |
| project_id | Yes | The ID of the project to add the task to | |
| description | No | Detailed description of the task | |
| estimated_minutes | No | Estimated time to complete in minutes | |
| acceptance_criteria | No | Criteria for task completion |