feat(api): add parentTaskId support to task update and MCP create

Allow setting ParentTaskId when updating a task via the API (with
validation that the parent exists) and when creating a task via the
MCP create_task tool.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-27 00:20:27 -05:00
parent 5db92d5127
commit 4b2a5a2707
3 changed files with 11 additions and 2 deletions

View File

@@ -6,4 +6,5 @@ public class UpdateTaskRequest
public string? Description { get; set; }
public string? Category { get; set; }
public int? EstimatedMinutes { get; set; }
public int? ParentTaskId { get; set; }
}