โ† All skills
Tencent SkillHub ยท Content Creation

Design System Creation

Complete workflow for creating distinctive design systems from scratch. Orchestrates aesthetic documentation, token architecture, components, and motion. Use when starting a new design system or refactoring an existing one. Triggers on create design system, design tokens, design system setup, visual identity, theming.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Complete workflow for creating distinctive design systems from scratch. Orchestrates aesthetic documentation, token architecture, components, and motion. Use when starting a new design system or refactoring an existing one. Triggers on create design system, design tokens, design system setup, visual identity, theming.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 16 sections Open source page

Design System Creation (Meta-Skill)

Complete workflow for creating distinctive design systems with personality.

OpenClaw / Moltbot / Clawbot

npx clawhub@latest install design-system-creation

When to Use

Starting a new product that needs visual identity Refactoring an existing design with scattered styles Building a component library with design tokens Want to go beyond generic Tailwind/Bootstrap aesthetics

Workflow Overview

1. Aesthetic Foundation โ†’ Document the vibe before code 2. Color Token System โ†’ CSS variables + Tailwind + TypeScript 3. Typography System โ†’ Font stack + scale + patterns 4. Surface Components โ†’ Layered primitives with CVA 5. Motion Tokens โ†’ Consistent animation timing 6. Loading States โ†’ Skeleton + shimmer patterns

Step 1: Aesthetic Foundation

  • Read: ai/skills/design-systems/distinctive-design-systems
  • Before writing CSS, document the aesthetic:
  • ## The Vibe
  • [1-2 sentences describing the visual feel]
  • ## Inspirations
  • [Reference 1 - what to take from it]
  • [Reference 2 - what to take from it]
  • ## Emotions to Evoke
  • | Emotion | How It's Achieved |
  • |---------|-------------------|
  • | [X] | [specific technique] |
  • | [Y] | [specific technique] |

Proven Directions to Consider

AestheticCharacteristicsRetro-futuristicCRT textures, glow effects, monospace fontsWarm cyberpunkTan/beige base, emerald accents, glass panelsMagazine financialBold typography, dark theme, gradient text

Step 2: Color Token Architecture

Read: ai/skills/design-systems/distinctive-design-systems Create the three-layer token system: /* 1. CSS Variables (source of truth) */ :root { --tone-primary: 76, 204, 255; --primary: 200 90% 65%; --success: 154 80% 60%; --destructive: 346 80% 62%; } // 2. Tailwind Config colors: { primary: 'hsl(var(--primary))', tone: { primary: 'rgb(var(--tone-primary))' }, } // 3. TypeScript Tokens (optional) export const colors = { primary: 'hsl(var(--primary))', };

Step 3: Typography System

Read: ai/skills/design-systems/distinctive-design-systems Define fonts and scale: :root { --font-display: 'Orbitron', system-ui; --font-mono: 'Share Tech Mono', monospace; --font-sans: 'Inter', system-ui; --typo-scale: 0.88; /* Mobile */ } @media (min-width: 640px) { :root { --typo-scale: 1; } }

Typography Patterns

/* Magazine-style numbers */ .metric { font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; } /* Labels */ .label { text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

Step 4: Surface Components

Read: ai/skills/design-systems/design-system-components Build layered surface primitives with CVA: const surfaceVariants = cva( 'rounded-lg backdrop-blur-sm transition-colors', { variants: { layer: { panel: 'bg-tone-cadet/40 border border-tone-jordy/10', tile: 'bg-tone-midnight/60 border border-tone-jordy/5', chip: 'bg-tone-cyan/10 border border-tone-cyan/20 rounded-full', }, }, } ); export function Surface({ layer, children }: SurfaceProps) { return <div className={surfaceVariants({ layer })}>{children}</div>; }

Step 5: Motion Tokens

Read: ai/skills/design-systems/distinctive-design-systems Define consistent animation timing: // tailwind.config.ts keyframes: { 'shimmer': { '0%': { backgroundPosition: '200% 0' }, '100%': { backgroundPosition: '-200% 0' } }, 'pulse-glow': { '0%, 100%': { opacity: '1' }, '50%': { opacity: '0.5' } }, 'slide-in': { '0%': { opacity: '0', transform: 'translateY(10px)' }, '100%': { opacity: '1', transform: 'translateY(0)' } }, }, animation: { 'shimmer': 'shimmer 1.5s ease-in-out infinite', 'pulse-glow': 'pulse-glow 1.8s ease-in-out infinite', 'slide-in': 'slide-in 0.2s ease-out', }

Step 6: Loading States

Read: ai/skills/design-systems/loading-state-patterns Create skeleton components that match your aesthetic: export function Skeleton({ className }: { className?: string }) { return ( <div className={cn( 'rounded-md bg-muted animate-shimmer', 'bg-gradient-to-r from-muted via-muted-foreground/10 to-muted bg-[length:200%_100%]', className )} /> ); }

Component Skills Reference

SkillPurposedistinctive-design-systemsAesthetic foundation, tokensdesign-system-componentsSurface primitives, CVAanimated-financial-displayNumber animationsloading-state-patternsSkeletons, shimmerfinancial-data-visualizationChart theming

File Structure

styles/ โ”œโ”€โ”€ globals.css # CSS variables, base styles โ”œโ”€โ”€ design-tokens.ts # TypeScript exports โ””โ”€โ”€ theme.css # Component patterns tailwind.config.ts # Token integration components/ โ”œโ”€โ”€ ui/ โ”‚ โ”œโ”€โ”€ surface.tsx # Surface primitive โ”‚ โ”œโ”€โ”€ skeleton.tsx # Loading states โ”‚ โ””โ”€โ”€ button.tsx # Variant components

NEVER Do

Never start with code before documenting aesthetic โ€” Vibes before CSS Never use pure black (#000) as base โ€” Always use tinted blacks for depth Never use pure white (#fff) for text โ€” Use tinted whites that match the palette Never skip design tokens in favor of hardcoded values โ€” Tokens prevent drift Never create components without variant system โ€” Use CVA or similar for consistency Never use Inter/Roboto for headings โ€” Display fonts create distinctiveness Never use default Tailwind colors โ€” Define your own palette Never skip backdrop-filter blur on glass โ€” Glass panels need blur to work Never apply decorative patterns to readable content โ€” Background decoration only Never use high-saturation colors without opacity โ€” Modulate with rgba()

Checklist

Document aesthetic foundation (vibe, inspirations, emotions) Create color token system (CSS + Tailwind + TS) Define typography stack and scale Build Surface primitive component Add motion tokens and animations Create loading state components Document anti-patterns (what NOT to do)

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • README.md Docs