synchronize
Align lines, loops, and vibes with a master rhythm to maintain coordinated creative workflows and strategic energy states in the LLV Helix Framework.
Instructions
Synchronize lines, loops, and vibes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
elements | Yes | Elements to synchronize (names of lines/loops/vibes) | |
master_rhythm | No | Master rhythm to sync to | |
phase_offset | No | Phase offset in degrees |
Input Schema (JSON Schema)
{
"properties": {
"elements": {
"description": "Elements to synchronize (names of lines/loops/vibes)",
"items": {
"type": "string"
},
"type": "array"
},
"master_rhythm": {
"description": "Master rhythm to sync to",
"type": "string"
},
"phase_offset": {
"description": "Phase offset in degrees",
"maximum": 360,
"minimum": 0,
"type": "number"
}
},
"required": [
"elements"
],
"type": "object"
}