Agent Skills
› plugin87/ux-ui-agent-skills
› design-tokens
design-tokens
GitHub基于DTCG标准生成、扩展或审计设计令牌,涵盖颜色、排版等13类属性。遵循三层架构,确保无障碍合规并输出JSON。
Trigger Scenarios
生成或修改设计令牌
验证令牌文件有效性
创建多品牌主题
Install
npx skills add plugin87/ux-ui-agent-skills --skill design-tokens -g -y
SKILL.md
Frontmatter
{
"name": "design-tokens",
"invocation": "model",
"description": "Generate, extend, or audit design tokens in DTCG format with the 3-tier architecture (primitive → semantic → component). Use when the user wants a color palette, type scale, spacing\/shadow\/radius\/motion tokens, multi-brand theming, or wants to validate token files. Covers colors, typography, spacing, shadows, borders, breakpoints, motion, gradients, opacity, blur, sizing, states, theming."
}
Skill: Design Tokens
Produce and maintain DTCG ($type/$value) tokens following the project's 3-tier system.
Steps
- Read
.claude/rules/tokens-and-color.md→ "Token System" + "Color Guidelines" and.claude/rules/typography-and-spacing.mdfor the rules (4px base, Major Third scale, OKLCH palette generation, dark-mode-at-semantic-layer). - Read the relevant existing files in
tokens/to match structure:colors.json,typography.json,spacing.json,shadows.json,borders.json,breakpoints.json,motion.json,gradients.json,opacity.json,blur.json,sizing.json,states.json,theming.json. - Generate/extend tokens:
- Primitives = raw values (never used directly). Semantic = purpose aliases. Component = component-scoped.
- New palettes: generate 11 OKLCH shades; verify 500 ≥ 4.5:1 on white (text), 600 ≥ 3:1 (UI) using the
a11y-auditskill /scripts/contrast.py. - Multi-brand/density →
theming.json.
- Validate: run
python3 scripts/validate_tokens.py(JSON validity + alias resolution).
Output
DTCG JSON. Preserve $description on every token. Reference, never hardcode.
Version History
-
2ffb677
Current 2026-08-28 11:59
规则引用路径从CLAUDE.md迁移至.claude/rules/目录;引入validate_tokens.py脚本进行显式路径校验。
- 93a7fbb 2026-07-25 07:40


