Design tokens
Thin core + domain sets for a fast, stack-aware project start. Cross-agent (Claude Code, Cursor, Codex, Gemini) via the SKILL.md standard. MIT.
npx -y skills add Neznakometz/StackForge --skill design-tokensAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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
Setting up and applying the project's design-token system. Apply when initializing UI, styling, and under the "tokens only, no hardcoding" rule. Provides a ready-made starter token set.
SKILL.md
2.2 KB, as published. Nobody here has run it
Design Tokens
So the agent has something to build on from day one (instead of hardcoding hex), the project starts with a ready-made token set.
Start
- Copy
ui/templates/tokens.cssinto the project (e.g.src/styles/tokens.cssorpackages/ui). This is a neutral professional default (slate greys + indigo, light+dark, passes WCAG AA) — usable as is, customizable to the brand. - Import it once at the root of the styles.
- Tailwind v4: move the values under
@themewith Tailwind prefixes (--spacing-*,--radius-*,--text-*+--text-*--line-height,--color-*,--shadow-*) — the utilities (p-4,rounded-md,text-base,bg-surface,shadow-md) generate themselves; dark mode — via a.dark/data-themeoverride.
Three token layers
- Primitives — raw values (
--gray-700,--primary-600,--space-4). - Semantic — purpose (
--surface,--text-muted,--accent,--border). Components use THIS layer → free dark mode and rebranding in one place. - Component (optional) — for a specific component, if needed.
Rules
- Tokens only. Colours/spacing/radii/shadows/typography — from tokens. Hardcoded hex/px in a component is a review bug (caught by
design-reviewer:Grep #[0-9a-fA-F]{3,6}). - In components, pull semantic aliases (
var(--surface)), not raw ramps. - Brand customization — change the values of primitives/semantics, don't breed new ones in components.
- Changing a scale (e.g. a different primary) — in one place; Grep over usages afterwards.
- Numeric foundations of the scales — the
visual-craftskill.
shadcn (React and Vue)
So that shadcn/ui (React) or shadcn-vue components inherit our palette — import templates/tokens-shadcn.css AFTER tokens.css. It bridges our tokens to the names shadcn expects (--background, --primary, --muted-foreground, --border, --radius) + @theme inline for Tailwind v4. One bridge for both frameworks (the nomenclature is shared). Setting up shadcn-vue — the shadcn-vue skill.