format_as_plan
Transform content into structured plans with priorities, time estimates, and checkboxes. Automatically triggered by commands like "organize this" or "make a plan" to enhance clarity and task management.
Instructions
IMPORTANT: This tool should be automatically called when users say "계획으로", "정리해줘", "체크리스트", "format as plan", "make a plan", "organize this", "checklist" or similar keywords. Format content into clear plans
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content to format as a plan | |
includeCheckboxes | No | Include checkboxes for tracking progress | |
includeTimeEstimates | No | Include time estimates for each step | |
priority | No | Default priority level |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content to format as a plan",
"type": "string"
},
"includeCheckboxes": {
"description": "Include checkboxes for tracking progress",
"type": "boolean"
},
"includeTimeEstimates": {
"description": "Include time estimates for each step",
"type": "boolean"
},
"priority": {
"description": "Default priority level",
"enum": [
"high",
"medium",
"low"
],
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}