think_aloud_process
Generate a step-by-step reasoning process for problem-solving or scenario analysis. Ideal for analytical, creative, systematic, or critical thinking perspectives with customizable verbosity levels.
Instructions
IMPORTANT: This tool should be automatically called when users say "생각해봐", "고민해봐", "어떻게 생각해", "think about it", "let me think", "reasoning" or similar keywords. Generate think-aloud reasoning process
Input Schema
Name | Required | Description | Default |
---|---|---|---|
perspective | No | Thinking perspective | |
scenario | Yes | Scenario or problem to think through | |
verbosity | No | Verbosity level |
Input Schema (JSON Schema)
{
"properties": {
"perspective": {
"description": "Thinking perspective",
"enum": [
"analytical",
"creative",
"systematic",
"critical"
],
"type": "string"
},
"scenario": {
"description": "Scenario or problem to think through",
"type": "string"
},
"verbosity": {
"description": "Verbosity level",
"enum": [
"concise",
"moderate",
"verbose"
],
"type": "string"
}
},
"required": [
"scenario"
],
"type": "object"
}