Design token management
Skill Dragoon0x/everything-design-taste/skills/design-token-management
A taste system for AI agents. 288 skills, 80 agents, 12 rules, and 8 hooks that turn generic AI output into work with genuine design quality. Anti-slop detection, typography craft, color systems, brand voice, product strategy, and 50+ specialized reviewers across UI, industry, platform, and content domains.
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
- 6 stars6 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.
What its author says it does
Copied from the file, not written here
Advanced design token workflows, token transformation, and multi-platform token distribution.
SKILL.md
1.3 KB, 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.