pulse_vibe
Send a controlled pulse through a specified vibe to manage energy states and enhance creative workflows within the LLV Helix Framework system.
Instructions
Send a pulse through a vibe
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amplitude | No | Pulse amplitude (0-1) | |
duration | No | Pulse duration in beats | |
vibe_name | Yes | Name of the vibe |
Input Schema (JSON Schema)
{
"properties": {
"amplitude": {
"description": "Pulse amplitude (0-1)",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"duration": {
"description": "Pulse duration in beats",
"type": "number"
},
"vibe_name": {
"description": "Name of the vibe",
"type": "string"
}
},
"required": [
"vibe_name"
],
"type": "object"
}