Design token management
Skill Dragoon0x/everything-design-taste/skills/design-token-management
Advanced design token workflows, token transformation, and multi-platform token distribution.From its SKILL.md
npx -y skills add Dragoon0x/everything-design-taste --skill design-token-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.3 KB, 290 tokens by cl100k_base, as published. Nobody here has run it
Design Token Management
Token Pipeline
Source of Truth
- Define tokens in JSON/YAML (platform-agnostic).
- Or define in Figma Variables and export.
- Single source, multiple outputs.
Transformation
Tokens → Style Dictionary → Platform outputs:
- CSS custom properties (web)
- Swift/Kotlin values (mobile)
- JSON (documentation, tooling)
Token Structure
{
"color": {
"brand": {
"primary": { "value": "#2563EB", "type": "color" },
"secondary": { "value": "#7C3AED", "type": "color" }
},
"semantic": {
"text": {
"primary": { "value": "{color.neutral.900}", "type": "color" },
"secondary": { "value": "{color.neutral.600}", "type": "color" }
}
}
}
}
Versioning
- Semantic versioning for token packages.
- Breaking changes: removing tokens, renaming tokens.
- Non-breaking: adding tokens, changing values.
- Changelog for every token update.
Multi-Brand
- Base tokens shared across brands.
- Brand-specific overrides as separate token files.
- Theme tokens (light/dark) as separate layers.
- Compose: base + brand + theme = final token set.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.