plan_tasks
Generate and organize multiple tasks from a structured plan, assign IDs, prioritize, add deadlines, tags, and dependencies, and sync with a knowledge graph for efficient task management.
Instructions
Create multiple tasks from a plan. Generates IDs and syncs with knowledge graph.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tasks | Yes | List of tasks to create with their details |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tasks": {
"description": "List of tasks to create with their details",
"items": {
"additionalProperties": false,
"properties": {
"dependsOn": {
"items": {
"format": "uuid",
"type": "string"
},
"type": "array"
},
"description": {
"minLength": 3,
"type": "string"
},
"due": {
"format": "date-time",
"type": "string"
},
"priority": {
"default": "medium",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"description"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"tasks"
],
"type": "object"
}