Agent skill · Security

web-design-guidelines

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", "check my site against best practices", or "web interface guidelines".

CloudAI-Xgithub.com/CloudAI-XGitHub ↗
claude-codecodexcursorMIT
Install
npx skills add CloudAI-X/claude-workflow-v2 --skill web-design-guidelines --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/web-design-guidelines/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,397
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Web Interface Guidelines ### When to Load - **Trigger**: UI audit, accessibility checks, responsive design review, UX best practices evaluation - **Skip**: Backend-only work with no UI components Self-contained guidelines for reviewing web interfaces. Apply these rules when auditing UI code. ## Output Format Report findings as: `file:line — [RULE_ID] description` Example: `src/Button.tsx:12 — [A11Y-01] Missing aria-label on icon button` ## 1. Accessibility (A11Y) ### A11Y-01: Semantic HTML - Use `<button>` for actions, `<a>` for navigation, `<input>` for data entry - Never use `<div onClick>` or `<span onClick>` for interactive elements - Use `<nav>`, `<main>`, `<aside>`, `<header>`, `<footer>` for landmarks ### A11Y-02: ARIA Labels - All interactive elements need accessible names - Icon-only buttons MUST have `aria-label` - Form inputs MUST have associated `<label>` or `aria-label` - Images need `alt` text (decorative images: `alt=""`) ### A11Y-03: Keyboard Navigation - All interactive elements must be reachable via Tab - Custom components need proper `role`, `tabIndex`, and key handlers - Focus must be visible (never `outline: none` without replacement) - Modal/dialog must trap

What's inside
Steps it walks through
  1. When to Load
  2. Output Format
  3. 1. Accessibility (A11Y)
  4. A11Y-01: Semantic HTML
  5. A11Y-02: ARIA Labels
  6. A11Y-03: Keyboard Navigation
  7. A11Y-04: Color & Contrast
  8. A11Y-05: Screen Readers
  9. 2. Performance (PERF)
  10. PERF-01: Image Optimization
  11. PERF-02: Bundle Size
  12. PERF-03: Rendering
  13. PERF-04: Core Web Vitals
  14. 3. Responsive Design (RD)
More from claude-workflow-v2
All skills →
About this skill
What does the web-design-guidelines skill do?

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", "check my site against best practices", or "web interface guidelines".

How do I install it?

Run `npx skills add CloudAI-X/claude-workflow-v2 --skill web-design-guidelines --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From CloudAI-X/claude-workflow-v2, a repository with 1,397 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going