suggest_improvements
Analyze HTML code to identify and propose design enhancements in areas like accessibility, performance, UX, aesthetics, and responsiveness, tailored to specified goals and target audience.
Instructions
Get AI-powered suggestions for design improvements
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Context about the design goals | |
focusAreas | No | Areas to focus improvements on | |
html | Yes | HTML code to analyze | |
targetAudience | No | Target audience for the design |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Context about the design goals",
"type": "string"
},
"focusAreas": {
"description": "Areas to focus improvements on",
"items": {
"enum": [
"accessibility",
"performance",
"ux",
"aesthetics",
"responsiveness"
],
"type": "string"
},
"type": "array"
},
"html": {
"description": "HTML code to analyze",
"type": "string"
},
"targetAudience": {
"description": "Target audience for the design",
"type": "string"
}
},
"required": [
"html"
],
"type": "object"
}