Ui a11y reviewer
Skill rafaelghif/antigravity-agents/.agents/skills/ui-a11y-reviewer
Enterprise-Grade Guardrails, Zero-Assumption Execution, and Quality Gates for Autonomous AI Coding Agents.
npx -y skills add rafaelghif/antigravity-agents --skill ui-a11y-reviewerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Frontend component validator against WCAG standards and aesthetic guidelines.
SKILL.md
1.8 KB, as published. Nobody here has run it
UI/UX & Accessibility (a11y) Reviewer Skill
Objective
Ensure all frontend code adheres to the "Adaptive UI/UX" rules defined in AGENTS.md.
When to Execute
- When generating new UI components.
- During PR reviews for frontend changes.
- Objective Skip Conditions: No modifications to
.html,.jsx,.tsx,.css,.scss,.vue,.sveltefiles. No modifications topublic/orstatic/assets. (Exception: Documentation-only changes).
Execution Steps
- Audit the UI against the explicit aesthetic criteria based on the context:
- For Consumer Views: Evaluate visual hierarchy (F-pattern or Z-pattern), consistent spacing system (read grid size from
.agents/config.json), and micro-interactions (hover, focus, transition states < 300ms). - For Admin Panels: Evaluate data density (maximize information) and utility (bulk actions, filtering, sorting).
- WCAG Compliance: Verify contrast (
axe-coreorpa11y), keyboard navigation (manual tab test to.agents/scratch/a11y-test-<date>.md), and ARIA properties (eslint-plugin-jsx-a11y). - Responsive Design: Verify UI works at the viewports defined in
.agents/config.json(Use Puppeteer/Playwright in the toolchain for automated viewport testing). Images usesrcset. No horizontal scrolling. - Mobile Accessibility: Verify touch targets ≥ 44px (WCAG 2.5.5). Test gesture navigation (swipe, pinch) for browser compatibility. Run Lighthouse mobile score → block if < 60.
- For Consumer Views: Evaluate visual hierarchy (F-pattern or Z-pattern), consistent spacing system (read grid size from
- If violations are found, immediately halt the process and refactor the code to comply before proceeding.