step_by_step_analysis
Break down complex tasks into manageable steps with detailed analysis. Specify the task, provide context, and choose the level of detail for structured guidance.
Instructions
IMPORTANT: This tool should be automatically called when users say "단계별", "차근차근", "하나씩", "step by step", "one by one", "gradually" or similar keywords. Perform detailed step-by-step analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Additional context for the task | |
detailLevel | No | Level of detail | |
task | Yes | Task to analyze step by step |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Additional context for the task",
"type": "string"
},
"detailLevel": {
"description": "Level of detail",
"enum": [
"basic",
"detailed",
"comprehensive"
],
"type": "string"
},
"task": {
"description": "Task to analyze step by step",
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}