Claude-skill-registry brand-guidelines-enforcer

[Design System] Lightweight brand guidelines enforcement for UI copy and visual motifs. Use when (1) checking UI labels/buttons/error messages against brand tone, (2) validating color usage in specific contexts, (3) ensuring reserved components are used correctly, (4) user asks to 'check brand guidelines', 'validate brand compliance', 'review copy tone', or 'enforce design rules'.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/brand-guidelines-enforcer" ~/.claude/skills/majiayu000-claude-skill-registry-brand-guidelines-enforcer && rm -rf "$T"
manifest: skills/data/brand-guidelines-enforcer/SKILL.md
source content

Brand Guidelines Enforcer

Lightweight enforcement of brand guidelines for UI copy and visual motifs.

Quick Start

python3 scripts/enforce_brand.py --guidelines brand.yml --source src/

Violation Types

TypeSeverityDescription
wrong-color-context
warningColor used outside allowed context
tone-violation
warningCopy doesn't match brand voice
reserved-component-misuse
errorReserved component in wrong screen
prohibited-word
errorProhibited word/pattern found
capitalization-error
infoWrong capitalization style

Detection Examples

Tone Violations

// Violation: unfriendly error message
<ErrorMessage>Error occurred: Invalid input</ErrorMessage>
// Suggested: "Something went wrong. Please check this field."

// Violation: generic CTA
<Button>Click here</Button>
// Suggested: "Get started" or "Continue"