branch_thought
Generate alternative perspectives by branching from an existing thought. Specify direction (e.g., 'opposite', 'tangential', 'more_extreme') to challenge conventional thinking effectively.
Instructions
Create a new branch of thinking from an existing thought
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | Yes | Direction for the new branch (e.g. 'more_extreme', 'opposite', 'tangential') | |
thoughtId | Yes | ID of the thought to branch from |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"description": "Direction for the new branch (e.g. 'more_extreme', 'opposite', 'tangential')",
"type": "string"
},
"thoughtId": {
"description": "ID of the thought to branch from",
"type": "string"
}
},
"required": [
"thoughtId",
"direction"
],
"type": "object"
}