component_analyze
Assess UI components for performance, accessibility, best practices, and SEO compliance. Integrate with UI/UX workflows to optimize development and ensure adherence to standards.
Instructions
Analyze component for performance and accessibility
Input Schema
Name | Required | Description | Default |
---|---|---|---|
checks | No | ||
code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"checks": {
"items": {
"enum": [
"performance",
"accessibility",
"best-practices",
"seo"
],
"type": "string"
},
"type": "array"
},
"code": {
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}