web-design-guidelines

Review UI code files against fetched Web Interface Guidelines and report findings.

Updated Aug 10, 2026
One-click install
npx skills add https://github.com/Eng-suso/BK-GPT --skill web-design-guidelines-eng-suso
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: web-design-guidelines
Source: https://github.com/Eng-suso/BK-GPT/tree/main/.claude/skills/web-design-guidelines
Command: npx skills add https://github.com/Eng-suso/BK-GPT --skill web-design-guidelines-eng-suso

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually checking UI code against accessibility and design best practices is slow and inconsistent. This Skill automates the review by fetching the latest Web Interface Guidelines and auditing your files against every rule. ## Core Features & Use Cases - Guideline-Based UI Review: Fetches the latest rules from the vercel-labs web-interface-guidelines repository and applies them to your code. - File or Pattern Targeting: Review a single file, a glob pattern, or get prompted to specify which files to audit. - Terse Findings Output: Reports violations in a compact file:line format for quick triage. - Use Case: Before merging a pull request, ask for a review of your React components to catch accessibility and UX issues against current best practices. ## Quick Start Ask the assistant to review my UI files in src/components against the web interface guidelines.

Frequently Asked Questions about web-design-guidelines

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review my UI code for accessibility issues?▼

Provide a file path or glob pattern and the Skill fetches the latest Web Interface Guidelines, then checks your code against every rule. Findings are reported in a terse file:line format so you can jump directly to each issue.

What design guidelines does this UI review use?▼

It fetches the web-interface-guidelines command file from the vercel-labs GitHub repository before each review. This ensures the audit always uses the most current rules rather than a stale local copy.

Can I review multiple files or a whole directory at once?▼

Yes, you can pass a file pattern as the argument to review multiple matching files in one run. If you provide no argument, the Skill asks which files you want reviewed.

Why does the UI review need network access?▼

The guidelines are fetched fresh from a remote URL on each run via WebFetch, so network access is required. Without it, the latest rules cannot be retrieved and the review cannot proceed.

What are the limitations of automated UI guideline reviews?▼

Static code review cannot evaluate runtime behavior, visual rendering, or interactive accessibility like keyboard navigation and screen reader output. Combine it with browser-based testing tools for full coverage.