apply_nielsen_heuristic
Apply Nielsen's usability heuristics to React components to identify and address potential user experience issues based on established design principles.
Instructions
Aplica uma heurística específica de Nielsen
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| component | Yes | Código do componente ou nome do arquivo | |
| heuristic | Yes | Número da heurística (1-10) |
Input Schema (JSON Schema)
{
"properties": {
"component": {
"description": "Código do componente ou nome do arquivo",
"type": "string"
},
"heuristic": {
"description": "Número da heurística (1-10)",
"enum": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
],
"type": "string"
}
},
"required": [
"component",
"heuristic"
],
"type": "object"
}