decompose_thinking
Break down complex problems into smaller, manageable components using hierarchical, functional, or temporal methods for structured analysis and clarity.
Instructions
Break down complex problems into manageable components
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method | No | Decomposition method | hierarchical |
| problem | Yes | Complex problem or topic to decompose |
Input Schema (JSON Schema)
{
"properties": {
"method": {
"default": "hierarchical",
"description": "Decomposition method",
"enum": [
"hierarchical",
"functional",
"temporal"
],
"type": "string"
},
"problem": {
"description": "Complex problem or topic to decompose",
"type": "string"
}
},
"required": [
"problem"
],
"type": "object"
}