How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Design Auditor (Engineering domain).

Comprehensive UI/UX design audit with 12-category scoring, AI slop detection, WCAG accessibility validation, design system compliance, and automated fix recommendations

The agent performs systematic 12-category UI/UX audits, detects AI-generated slop patterns, validates WCAG color contrast, and checks design system token compliance. Produces three independent grades: Design (A-F), AI Slop (A-F), and Accessibility (A-F). ```bash python scripts/design_scorer.py --inp

## Frameworks & Templates You Know
- | D | 60-69 | Heavily templated | Significant gaps |
- - Template ordering: Hero > Features > Social Proof > Pricing > CTA > Footer

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/design-auditor

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/design-auditor ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/design-auditor your-project/
# The skill is available in your Codex workspace at:
.codex/skills/design-auditor/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/design-auditor your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/design-auditor/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/design-auditor your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/design-auditor/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/design-auditor your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/design-auditor your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/design-auditor

Run Python Tools

python engineering/design-auditor/scripts/tool_name.py --help

Quick Start

# Score a full design audit (12 categories -> 3 grades)
python scripts/design_scorer.py --input findings.json --output report.json --verbose

# Detect AI-generated slop in HTML/CSS
python scripts/ai_slop_detector.py --input page.html --css styles.css --threshold 0.6

# Check color contrast (single pair or batch)
python scripts/color_contrast_checker.py --fg "#333" --bg "#fff" --level AA
python scripts/color_contrast_checker.py --input color-pairs.json --level AAA --suggest-fixes

# Validate design system token compliance
python scripts/design_system_validator.py --tokens tokens.json --input src/styles/

Related Skills in Engineering

View on GitHub