plan_from_contexts
Analyze multiple contexts to generate structured action plans using AI, enabling systematic decision-making from collected information.
Instructions
Analyze contexts and generate actionable plans using AI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_ids | Yes | Array of context IDs to analyze for planning (1-20 contexts) | |
planning_prompt | No | Optional custom prompt to guide the planning process |
Input Schema (JSON Schema)
{
"properties": {
"context_ids": {
"description": "Array of context IDs to analyze for planning (1-20 contexts)",
"items": {
"format": "uuid",
"type": "string"
},
"maxItems": 20,
"minItems": 1,
"type": "array"
},
"planning_prompt": {
"description": "Optional custom prompt to guide the planning process",
"type": "string"
}
},
"required": [
"context_ids"
],
"type": "object"
}