create_thinking_chain
Generate a sequential chain of thought for structured reasoning by specifying a topic and number of steps. Ideal for breaking down complex ideas into logical progressions.
Instructions
IMPORTANT: This tool should be automatically called when users say "생각 과정", "사고 흐름", "연쇄적으로", "thinking process", "chain of thought", "reasoning chain" or similar keywords. Create sequential thinking chain
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| steps | No | Number of thinking steps | |
| topic | Yes | Topic to think about |
Input Schema (JSON Schema)
{
"properties": {
"steps": {
"description": "Number of thinking steps",
"type": "number"
},
"topic": {
"description": "Topic to think about",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}