$npx -y skills add One-Man-Company/Skills-ContextManager --skill web-design-guidelinesReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
| 1 | # Web Interface Guidelines |
| 2 | |
| 3 | Review files for compliance with Web Interface Guidelines. |
| 4 | |
| 5 | ## How It Works |
| 6 | |
| 7 | 1. Fetch the latest guidelines from the source URL below |
| 8 | 2. Read the specified files (or prompt user for files/pattern) |
| 9 | 3. Check against all rules in the fetched guidelines |
| 10 | 4. Output findings in the terse `file:line` format |
| 11 | |
| 12 | ## Guidelines Source |
| 13 | |
| 14 | Fetch fresh guidelines before each review: |
| 15 | |
| 16 | ``` |
| 17 | https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md |
| 18 | ``` |
| 19 | |
| 20 | Use WebFetch to retrieve the latest rules. The fetched content contains all the rules and output format instructions. |
| 21 | |
| 22 | ## Usage |
| 23 | |
| 24 | When a user provides a file or pattern argument: |
| 25 | 1. Fetch guidelines from the source URL above |
| 26 | 2. Read the specified files |
| 27 | 3. Apply all rules from the fetched guidelines |
| 28 | 4. Output findings using the format specified in the guidelines |
| 29 | |
| 30 | If no files specified, ask the user which files to review. |
| 31 | |
| 32 | --- |
| 33 | |
| 34 | ## Related Skills |
| 35 | |
| 36 | | Skill | When to Use | |
| 37 | |-------|-------------| |
| 38 | | **[frontend-design](../frontend-design/SKILL.md)** | Before coding - Learn design principles (color, typography, UX psychology) | |
| 39 | | **web-design-guidelines** (this) | After coding - Audit for accessibility, performance, and best practices | |
| 40 | |
| 41 | ## Design Workflow |
| 42 | |
| 43 | ``` |
| 44 | 1. DESIGN → Read frontend-design principles |
| 45 | 2. CODE → Implement the design |
| 46 | 3. AUDIT → Run web-design-guidelines review ← YOU ARE HERE |
| 47 | 4. FIX → Address findings from audit |
| 48 | ``` |