list_tasks
Create and manage structured task lists with status tracking, priorities, and dependencies. Organize tasks by status (pending, in progress, completed) to streamline workflows efficiently.
Instructions
Generate a structured task list, including complete status tracking, priority, and dependencies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | Yes | Task status to list, can choose 'all' to list all tasks, or specify specific status |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"status": {
"description": "Task status to list, can choose 'all' to list all tasks, or specify specific status",
"enum": [
"all",
"pending",
"in_progress",
"completed"
],
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
}