get_subtasks
Retrieve subtasks associated with a specific parent task ID to efficiently manage and organize task hierarchies in a locally-hosted task management system.
Instructions
Get subtasks for a given parent task ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parent_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"parent_id": {
"title": "Parent Id",
"type": "string"
}
},
"required": [
"parent_id"
],
"title": "get_subtasksArguments",
"type": "object"
}