create_loop
Build iterative cycles for strategic design and creative workflows by configuring loop patterns and rhythms to manage innovation processes.
Instructions
Create a loop - an iterative cycle
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the loop | |
| rhythm | No | Rhythm pattern of iterations | |
| type | Yes | Type of loop pattern |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the loop",
"type": "string"
},
"rhythm": {
"description": "Rhythm pattern of iterations",
"enum": [
"constant",
"variable",
"fibonacci",
"exponential",
"harmonic"
],
"type": "string"
},
"type": {
"description": "Type of loop pattern",
"enum": [
"infinite",
"convergent",
"divergent",
"spiral",
"oscillating"
],
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
}