Design system
Skill Syo-M/codex-frontend-skills/.agents/skills/design-system
Codex-native frontend skills, custom agents, profiles, and an evidence-backed evaluation harness for React, Next.js, Vite, and Astro.
npx -y skills add Syo-M/codex-frontend-skills --skill design-systemAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 24 days oldThe repository was created 24 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 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
Shared UI components, design tokens, typography, icons, and Figma-to-code consistency. Use for reusable design-system work. 日本語の依頼例:「共通コンポーネント」「デザインシステム」「トークン定義」「Figma通りに実装」。
SKILL.md
3.3 KB, 692 tokens by cl100k_base, as published. Nobody here has run it
Design System
Token tiers — extend the scale, never bypass it
Builds on the active styling skill's token rules (css-modules: tokens.css; tailwind: the @theme block — both compile to CSS custom properties; no styling skill installed → keep tokens wherever the project already defines them). Structure tokens in tiers:
- Primitive: raw values, never used directly in components (
--blue-600,--size-4). - Semantic: meaning-bearing aliases components consume (
--color-action,--color-text-muted,--space-inline-md). - Component (only when needed):
--button-height-mdreferencing semantic tokens.
- Components consume semantic/component tokens only. A new design value means extending the scale deliberately — never a one-off raw value in a component module.
- Every new token gets a value for every theme (
[data-theme='dark']etc.) at creation time; a token defined for light only is a bug.
Typography
- One modular type scale as tokens (
--text-sm…--text-2xl), sizes inrem, line-height unitless. No ad-hocfont-sizevalues in components. - Max line length for body text (
max-inline-size: 65chor a token). - Fonts: prefer one variable font over many static weights; loading rules (framework loader,
woff2,font-display, preload, subsetting) live inimages-media.
Iconography
- One icon system per repo: SVG-as-component (SVGR or framework equivalent), sized via tokens, colored via
currentColorso icons inherit text color. - Decorative icons:
aria-hidden="true". Icon-only buttons:aria-label(seea11y). Never mix icon libraries casually — adding a second icon set is a dependency decision.
Shared component API
- Consistent vocabulary across all components: the same variant names (
variant,sizewith the same scalesm/md/lg) mean the same thing everywhere. Don't inventkind/appearance/typesynonyms per component. - Shared components accept
className(merged onto the root withclsx) and forwardref; spread remaining valid DOM props onto the root element so consumers can setdata-*/aria-*. - Inputs ship controlled AND uncontrolled support where native inputs do; document which.
- Every shared component has stories for all visual states (see
storybook) — the catalog IS the design-system documentation.
Implementing from Figma
- Figma values are intent, not law: map every color/space/radius/shadow to the nearest existing token. A value with no close token is a conversation (new token or designer adjustment), not a hardcoded pixel value copied from the inspect panel.
- Auto-layout maps to flex/grid +
gap— don't transcribe absolute positions. - Designs are drawn at one viewport in one state. Before calling it done, resolve what the mock doesn't show: responsive behavior, focus/hover/active, loading/error/empty, long text and overflow, keyboard interaction, dark theme.
- Match the design system's existing component before building new: if the mock looks 90% like
<Card>, extend<Card>, don't fork it.