update_task
Modify an existing task's title, status, priority, due date, tags, or description by specifying its task ID. Use when task details change or progress needs tracking.
Instructions
Update an existing task
Args:
task_id: ID of the task to update
title: New title for the task
description: New description for the task
priority: New priority (low, medium, high, urgent)
status: New status (pending, in_progress, completed, cancelled)
due_date: New due date in YYYY-MM-DD format
tags: New comma-separated tags
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| title | No | ||
| status | No | ||
| task_id | Yes | ||
| due_date | No | ||
| priority | No | ||
| description | No |