design-auditor
Catalogue stub — full skill: Ashutos1997/claude-design-auditor-skill
Decision tree
Is the full skill already installed?
Check whether the skill at this location still has a das: block:
- Global:
grep -q "^das:" ~/.agents/skills/design-auditor/SKILL.md 2>/dev/null && echo "pointer" || echo "installed"
- Project:
grep -q "^das:" .agents/skills/design-auditor/SKILL.md 2>/dev/null && echo "pointer" || echo "installed"
- No
das: block → full skill installed, invoke it and proceed
das: block present → go to step 2
Detect scope, then install:
To detect scope:
[ -e ~/.agents/skills/design-auditor ] && echo "global" || echo "project"
Global (installed with -g):
npx skills add Ashutos1997/claude-design-auditor-skill --skill design-auditor -g -y
Project (installed without -g):
npx skills add Ashutos1997/claude-design-auditor-skill --skill design-auditor -y
Claude Code: send either command as a chat message starting with ! to run it without leaving the conversation.
Invoke after install
- Skill name:
design-auditor
- Trigger phrases: "design audit", "design score", "19 categories", "design-auditor", "design quality check"
What it does
Comprehensive design audit skill that evaluates designs across 19 professional categories: typography, color/contrast, spacing, visual hierarchy, consistency, WCAG accessibility, forms, motion/animation, dark mode, responsive design, loading states, empty states, error states, microcopy, i18n/RTL support, elevation/shadows, iconography, navigation, design tokens, ethical design and dark patterns, and Nielsen heuristics. Produces a 0-100 score with issues ranked by severity so the most impactful problems surface first.
When NOT to use
- Accessibility-only audits — use
fixing-accessibility for a focused WCAG pass
- WCAG-specific compliance documentation — use
wcag-audit-patterns
1---2name: design-auditor3description: Audits designs across 19 professional categories including typography, color/contrast, spacing, visual hierarchy, consistency, WCAG, forms, motion, dark mode, responsive, loading/empty/error states, microcopy, i18n/RTL, elevation, iconography, navigation, design tokens, ethical design/dark patterns, and Nielsen heuristics. Scores 0-100 with severity-ranked issues.4---5
6# design-auditor
7
8> Catalogue stub — full skill: [Ashutos1997/claude-design-auditor-skill](https://github.com/Ashutos1997/claude-design-auditor-skill)
9
10## Decision tree
11
121. **Is the full skill already installed?**
13 Check whether the skill at this location still has a `das:` block:
14 - Global: `grep -q "^das:" ~/.agents/skills/design-auditor/SKILL.md 2>/dev/null && echo "pointer" || echo "installed"`
15 - Project: `grep -q "^das:" .agents/skills/design-auditor/SKILL.md 2>/dev/null && echo "pointer" || echo "installed"`
16 - No `das:` block → full skill installed, invoke it and proceed
17 - `das:` block present → go to step 2
18
192. **Detect scope, then install:**
20
21 To detect scope:
22 ```bash
23 [ -e ~/.agents/skills/design-auditor ] && echo "global" || echo "project"
24 ```
25
26 **Global** (installed with `-g`):
27 ```bash
28 npx skills add Ashutos1997/claude-design-auditor-skill --skill design-auditor -g -y
29 ```
30
31 **Project** (installed without `-g`):
32 ```bash
33 npx skills add Ashutos1997/claude-design-auditor-skill --skill design-auditor -y
34 ```
35 > **Claude Code:** send either command as a chat message starting with `!` to run it without leaving the conversation.
36
37
38## Invoke after install
39
40- Skill name: `design-auditor`
41- Trigger phrases: "design audit", "design score", "19 categories", "design-auditor", "design quality check"
42
43## What it does
44
45Comprehensive design audit skill that evaluates designs across 19 professional categories: typography, color/contrast, spacing, visual hierarchy, consistency, WCAG accessibility, forms, motion/animation, dark mode, responsive design, loading states, empty states, error states, microcopy, i18n/RTL support, elevation/shadows, iconography, navigation, design tokens, ethical design and dark patterns, and Nielsen heuristics. Produces a 0-100 score with issues ranked by severity so the most impactful problems surface first.
46
47## When NOT to use
48
49- Accessibility-only audits — use `fixing-accessibility` for a focused WCAG pass
50- WCAG-specific compliance documentation — use `wcag-audit-patterns`