create_line
Establish connections between points by defining a path with customizable rhythm, enabling structured flow creation in strategic and creative workflows.
Instructions
Create a line - a connection or path between points
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | Yes | Starting point | |
name | Yes | Name of the line | |
rhythm | No | Rhythm of the line | |
to | Yes | Ending point |
Input Schema (JSON Schema)
{
"properties": {
"from": {
"description": "Starting point",
"type": "string"
},
"name": {
"description": "Name of the line",
"type": "string"
},
"rhythm": {
"description": "Rhythm of the line",
"enum": [
"steady",
"accelerating",
"pulsing",
"syncopated",
"flowing"
],
"type": "string"
},
"to": {
"description": "Ending point",
"type": "string"
}
},
"required": [
"name",
"from",
"to"
],
"type": "object"
}