split_research_node
Break down complex research ideas into manageable sub-nodes by splitting a research node into multiple organized components for better analysis and organization.
Instructions
Split a research node into multiple sub-nodes, useful for breaking down complex ideas into manageable tiles
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeId | Yes | ID of the node to split | |
| subNodes | Yes | Array of sub-nodes to create |
Input Schema (JSON Schema)
{
"properties": {
"nodeId": {
"description": "ID of the node to split",
"type": "string"
},
"subNodes": {
"description": "Array of sub-nodes to create",
"items": {
"properties": {
"content": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"nodeId",
"subNodes"
],
"type": "object"
}