create_vibe
Generate energy states or atmospheres with customizable parameters for creative workflows, strategic design, and innovation processes.
Instructions
Create a vibe - an energy or atmosphere
Input Schema
Name | Required | Description | Default |
---|---|---|---|
energy | Yes | Energy type | |
frequency | No | Frequency/tempo (1-100 Hz) | |
name | Yes | Name of the vibe | |
rhythm | No | Rhythmic pattern |
Input Schema (JSON Schema)
{
"properties": {
"energy": {
"description": "Energy type",
"enum": [
"calm",
"intense",
"chaotic",
"focused",
"expansive"
],
"type": "string"
},
"frequency": {
"description": "Frequency/tempo (1-100 Hz)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"name": {
"description": "Name of the vibe",
"type": "string"
},
"rhythm": {
"description": "Rhythmic pattern",
"enum": [
"ambient",
"driving",
"syncopated",
"polyrhythmic",
"freeform"
],
"type": "string"
}
},
"required": [
"name",
"energy"
],
"type": "object"
}