$npx -y skills add vercel-labs/agent-skills --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. |