| name | Vercel Web Guidelines Revanced |
| description | REVIEW UI code for Web Interface Guidelines compliance. Fetch latest guidelines from source URL, read specified files, apply all rules, output findings in terse `file:line` format. Trigger: "review my UI", "check accessibility", "audit design", "review UX", "check my site against best practices".
|
| metadata | {"author":"vercel","version":"2.0.0","last_updated":"2026-06-28T00:00:00.000Z","argument-hint":"<file-or-pattern>"} |
| category | vercel-revanced |
| version | 2.0.0 |
Web Interface Guidelines
Review files for compliance with Web Interface Guidelines.
IDENTIFY: When to Activate
Activate when user says:
- "review my UI", "audit my design", "check my site"
- "review UX", "check accessibility of my page"
- Any request to validate UI against best practices
EXECUTE: Instructions
Step 1: Fetch Latest Guidelines
FETCH_URL="https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md"
Fetch the latest rules from the URL above. The fetched content contains ALL rules and output format instructions.
Step 2: Read Target Files
- If user provided file path(s) or pattern → read specified files
- If no files specified → ask user which files to review
Step 3: Apply Rules
Apply ALL rules from the fetched guidelines against the read files.
Step 4: Output Findings
Output findings using EXACTLY the format specified in the fetched guidelines (typically file:line format).
OUTPUT FORMAT
The output format is defined by the fetched guidelines, follow it exactly. Typically:
<file>:<line>: <finding>
<file>:<line>: <finding>