creative_mode
Design and architect complex components by defining names, creative types, and requirements. Supports architecture, algorithm, and UI/UX development for structured project workflows.
Instructions
Design and architecture work for complex components
Input Schema
Name | Required | Description | Default |
---|---|---|---|
component_name | Yes | ||
creative_type | Yes | ||
requirements | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"component_name": {
"type": "string"
},
"creative_type": {
"enum": [
"architecture",
"algorithm",
"uiux"
],
"type": "string"
},
"requirements": {
"type": "string"
}
},
"required": [
"component_name",
"creative_type",
"requirements"
],
"type": "object"
}