dragoon0x/everything-design-taste

design-token-management

Advanced design token workflows, token transformation, and multi-platform token distribution.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill design-token-management

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,374 B
  • docs SUMMARY.md 124 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

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.