superdesign_generate
Generate UI designs, wireframes, components, logos, or icons by inputting a design prompt and selecting the framework and variations. Supports HTML, React, and Vue for AI-powered design creation.
Instructions
Returns design specifications for Claude Code to generate UI designs, wireframes, components, logos, or icons
Input Schema
Name | Required | Description | Default |
---|---|---|---|
design_type | Yes | Type of design to generate | |
framework | No | Framework for UI components | html |
prompt | Yes | Design prompt describing what to create | |
variations | No | Number of design variations to create |
Input Schema (JSON Schema)
{
"properties": {
"design_type": {
"description": "Type of design to generate",
"enum": [
"ui",
"wireframe",
"component",
"logo",
"icon"
],
"type": "string"
},
"framework": {
"default": "html",
"description": "Framework for UI components",
"enum": [
"html",
"react",
"vue"
],
"type": "string"
},
"prompt": {
"description": "Design prompt describing what to create",
"type": "string"
},
"variations": {
"default": 3,
"description": "Number of design variations to create",
"maximum": 5,
"minimum": 1,
"type": "number"
}
},
"required": [
"prompt",
"design_type"
],
"type": "object"
}