Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/google-labs-code/stitch-skills/stitchextract-design-md
stitchextract-design-md logo

stitchextract-design-md

google-labs-code/stitch-skills
0 installs6K stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/google-labs-code/stitch-skills --skill stitchextract-design-md

Summary

>-

SKILL.md

Extract Design System from Frontend Code

Analyze frontend source code to extract a comprehensive design system document (DESIGN.md) that captures the project's visual language — colors, typography, spacing, component patterns, and layout principles — directly from the source files, without needing to build or render the application.

Why This Exists

The design-md skill works from rendered HTML. But often you have a codebase and want to understand its design system before you can even run the app — maybe dependencies are missing, the build is broken, or you just want a quick audit. This skill reads the source files themselves: stylesheets, component files, theme configs, and Tailwind setups. It's faster and works anywhere.

When to Use

  • User has a frontend codebase and wants to extract or document its design system
  • User wants to migrate a project's visual identity into Stitch
  • User asks to "audit the styling" or "understand the design language" of a repo
  • User wants to create a DESIGN.md from existing source code
  • The app can't be built/rendered but the source is available
  • User wants to unify or reconcile inconsistent styles across a codebase

Prerequisites

  • Access to the frontend project's source directory
  • No build or runtime dependencies needed — this skill reads source files only

---

Workflow

Phase 1: Project Discovery

Start by understanding what you're working with. This determines which extraction patterns to use.

1. Detect the Framework and Stack

Scan the project root for telltale files:

Signal FileFramework / Tool
package.json with reactReact / Next.js
package.json with vueVue / Nuxt
package.json with svelteSvelte / SvelteKit
package.json with @angular/coreAngular
tailwind.config.js/tsTailwind CSS
postcss.config.jsPostCSS pipeline
styled-components or @emotion in depsCSS-in-JS
.css / .scss / .less files onlyPlain CSS / SASS
theme.js / theme.ts / tokens.jsDesign token files

Read package.json first — it reveals the framework, CSS tooling, and any design-token libraries (e.g., style-dictionary, @chakra-ui/react, @mui/material, ant-design). This context tells you where to look for styling information.

2. Map the Source Tree

Identify the key directories and files you'll analyze:

src/
├── components/     ← Component-level styles
├── styles/         ← Global stylesheets
├── theme/          ← Theme definitions, tokens
├── assets/         ← Fonts, images
├── app.css         ← Root styles
└── index.css       ← Entry CSS

Also check for:

  • tailwind.config.js / tailwind.config.ts — Custom colors, fonts, spacing
  • globals.css / global.css — CSS custom properties (variables)
  • Any theme. or tokens. files
  • Component library config (e.g., chakra-theme.ts, vuetify.config.ts)
3. Read Framework-Specific Guidance

Consult the appropriate reference for extraction patterns:

  • React / Next.js / Tailwind → references/react-tailwind.md
  • Vue / Nuxt → references/vue.md
  • Svelte / SvelteKit → references/svelte.md
  • Angular → references/angular.md
  • Plain CSS / SASS / Less → references/plain-css.md

These references contain framework-specific patterns for locating colors, typography, spacing, and component styles. Read the one that matches before proceeding.

---

Phase 2: Deep Extraction

Work through each design dimension systematically. For each one, gather raw data from the source files, then synthesize it into descriptive language.

The goal isn't to dump every CSS property — it's to understand the intent behind the styling choices and describe them in human, editorial language that another designer (or Stitch) can use to recreate the same visual feel.

1. Visual Theme & Atmosphere

Read the broadest styling first to understand the overall mood:

  • Root background: What's the body or root element background? Light

cream (#f-range) signals airy/clean; dark (#0-#2 range) signals moody/dramatic.

  • Whitespace philosophy: Are spacing values generous (32px+) or tight?

Check padding/margin values on root containers, section wrappers, and card components.

  • Density: Count the components per page/section. Few with space = minimal;

many packed tight = information-dense.

  • Color temperature: Are the neutrals warm (creams, tans) or cool (blue-grays, slates)?
  • Overall feel: Synthesize into 1-2 rich sentences that capture the mood.

Look for these signals in the source:

Source LocationWhat It Tells You
Root background-color or Tailwind bg-* on layoutsOverall lightness/darkness
Spacing scale in Tailwind config or CSS varsWhitespace philosophy
Number of components vs. wrapper paddingDensity
Custom property naming (--warm- vs --cool-)Color temperature intent
Comments in theme filesDesign intent in the developer's own words
2. Color Palette & Roles

Extract every unique color from the codebase and assign functional roles. Search across all layers:

Where to find colors:

LayerWhat to Search
CSS custom properties--color-, --primary, --bg-
Tailwind configtheme.extend.colors
Theme/token filesColor objects, palettes
Component stylesbackground-color, color, border-color
Inline/scoped stylesbg-, text- classes in templates
CSS-in-JS theme objectscolors, palette keys

How to organize: Group colors by function, not by hue:

  1. Primary Foundation — Background and surface colors
  2. Accent & Interactive — CTA buttons, active states, links
  3. Typography & Text Hierarchy — Primary, secondary, tertiary text
  4. Functional States — Success, error, warning, info

For each color, create a descriptive name that evokes the color's character rather than its raw hex value:

  • ❌ #294056 → "Blue"
  • ✅ #294056 → "Deep Muted Teal-Navy" — Primary CTA, active navigation

Deduplication matters. Codebases often have near-duplicate colors (e.g., #333 and #2C2C2C). Consolidate them under one name that best represents the intended color.

3. Typography Rules

Extract the complete typographic system:

Font families:

  • Check CSS font-family, Tailwind fontFamily, Google Fonts links, or

local @font-face declarations.

  • Note the character of each font: geometric vs humanist, serif vs sans,

the feeling it evokes.

Type scale (hierarchy):

  • Find every heading level (H1-H6) and body text, noting:
  • font-size (in rem or px)
  • font-weight (numeric value + descriptive name)
  • letter-spacing (and why — elegance? compactness?)
  • line-height (generous for readability? tight for display?)
  • Map component usage: Which heading level do product cards use? What about

hero sections?

Spacing principles:

  • How does text spacing relate to the overall spacing scale?
  • Letter-spacing patterns on headings vs body
  • Line-height philosophy (generous/relaxed for body, tighter for display)
4. Component Stylings

Analyze the 4-5 most important UI primitives:

Buttons:

  • Corner radius (and what it communicates — playful? professional? minimal?)
  • Color scheme for primary, secondary, and ghost variants
  • Hover/focus/active states and transition timing
  • Padding ratios (horizontal vs vertical)

Cards / Containers:

  • Corner radius (often different from buttons — slightly rounder)
  • Shadow strategy: flat, subtle hover shadows, or always elevated?
  • Border treatment: hairline borders, colored accents, or none?
  • Internal padding (generous or compact?)
  • Image treatment within cards (full-bleed, padded, rounded?)

Navigation:

  • Layout pattern (horizontal bar, vertical sidebar, drawer)
  • Typography treatment (uppercase, letter-spacing, weight)
  • Active/hover state indicators (underline, color, background)
  • Mobile behavior (hamburger, bottom nav, drawer)

Inputs & Forms:

  • Border style and focus state behavior
  • Corner style consistency with buttons
  • Padding and touch-target sizing

Domain-Specific Components:

  • Identify 1-2 components unique to this project (e.g., product cards,

dashboard widgets, chat bubbles) and describe their styling patterns.

5. Layout Principles

Extract the structural system:

Grid & Structure:

  • Max content width (from max-width on containers)
  • Column system (CSS Grid, Flexbox patterns, defined breakpoints)
  • Responsive breakpoints (from media queries or Tailwind config)

Whitespace Strategy:

  • Base spacing unit (8px grid? 4px? custom?)
  • Section margins (how much space between major sections)
  • Edge padding (page margins at different breakpoints)

Alignment & Visual Balance:

  • Text alignment patterns (centered heroes, left-aligned body)
  • Image-to-text ratios
  • Visual weight distribution

Responsive Behavior:

  • Mobile-first or desktop-first?
  • How do grids collapse? Padding scale?
  • Touch target sizing
6. Stitch Generation Notes

Synthesize the extraction into actionable prompts for Stitch:

  • Atmosphere language: Translate the mood into natural descriptors
  • Color references: List colors by descriptive name + hex
  • Component prompts: Write 2-3 example prompts that would recreate

key components in Stitch

  • Iteration guidance: Tips for refining screens in this design system

---

Phase 3: Write the DESIGN.md

Assemble everything into the standard DESIGN.md format. Place it at .stitch/DESIGN.md in the project directory (create the .stitch/ directory if it doesn't exist).

[!IMPORTANT] You MUST include the YAML frontmatter at the top of the file with name and colors mapping, exactly as shown in the example at examples/DESIGN.md. This structured data is required for other skills to parse the design system. Failure to include this YAML block with at least the core color tokens is a failure to use this skill correctly.

Use the format from the example at examples/DESIGN.md as your template. The file must start with the YAML block, followed by the markdown sections:

# Design System: [Project Name]
**Project ID:** [If known, otherwise omit]

## 1. Visual Theme & Atmosphere
[Rich 2-paragraph description of mood, philosophy, and key characteristics]

## 2. Color Palette & Roles
### Primary Foundation
### Accent & Interactive
### Typography & Text Hierarchy
### Functional States

## 3. Typography Rules
### Hierarchy & Weights
### Spacing Principles

## 4. Component Stylings
### Buttons
### Cards & [Domain-Specific Containers]
### Navigation
### Inputs & Forms
### [Domain-Specific Components]

## 5. Layout Principles
### Grid & Structure
### Whitespace Strategy
### Alignment & Visual Balance
### Responsive Behavior & Touch

## 6. Design System Notes for Stitch Generation
### Language to Use
### Color References
### Component Prompts
### Incremental Iteration

---

Phase 4: Integration (Optional)

If the user wants to push the design system into Stitch:

  1. Hand off to the manage-design-system skill for the MCP create/update calls
  2. The DESIGN.md you wrote is the input — the manage-design-system skill handles

the Stitch API integration

If the user just wants the document, you're done after Phase 3.

---

Quality Checklist

Before delivering the DESIGN.md, verify:

  • [ ] Every color has a descriptive name, hex code, and functional role
  • [ ] Typography includes font family, character description, and full hierarchy
  • [ ] Component styles describe shape, color, states, and transitions
  • [ ] Layout includes max-width, grid, breakpoints, and spacing strategy
  • [ ] Stitch generation notes use natural language, not CSS syntax
  • [ ] The atmosphere section reads like editorial copy, not technical docs
  • [ ] Near-duplicate colors are consolidated
  • [ ] The document captures the intent behind styling, not just raw values

Tips for Better Extraction

  • Read comments and commit messages. Developers often document design

intent in code comments (/ hero section — breathable /) and commit messages. These are gold for understanding the why.

  • Check for design-token libraries. If the project uses style-dictionary,

@tokens-studio, or similar, these files are the most authoritative source of design values.

  • Theme files are higher-signal than component styles. A theme.ts that

defines a palette tells you the intended design system; scattered inline styles in components tell you what actually shipped. Both matter, but start from the theme.

  • Tailwind config is a design system. If a project has a customized

tailwind.config.js, that is the design system — extract from it first, then spot-check components for overrides.

  • CSS custom properties are intentional. If a developer defined

--brand-primary, they're telling you this is a design token. Respect that.

Score

0–100
62/ 100

Grade

C

Popularity22/30

6,018 GitHub stars on the source repo — strong adoption. Install counts are not tracked for this skill.

Completeness19/30

Documented: full SKILL.md body, one-line install. Missing: description, category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Stitchextract Design Md skill score badge previewScore badge

Markdown

[![Stitchextract Design Md skill](https://www.remoteopenclaw.com/skills/google-labs-code/stitch-skills/stitchextract-design-md/badges/score.svg)](https://www.remoteopenclaw.com/skills/google-labs-code/stitch-skills/stitchextract-design-md)

HTML

<a href="https://www.remoteopenclaw.com/skills/google-labs-code/stitch-skills/stitchextract-design-md"><img src="https://www.remoteopenclaw.com/skills/google-labs-code/stitch-skills/stitchextract-design-md/badges/score.svg" alt="Stitchextract Design Md skill"/></a>

Stitchextract Design Md FAQ

How do I install the Stitchextract Design Md skill?

Run “npx skills add https://github.com/google-labs-code/stitch-skills --skill stitchextract-design-md” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Stitchextract Design Md skill do?

>- The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Stitchextract Design Md skill free?

Yes. Stitchextract Design Md is a free, open-source skill published from google-labs-code/stitch-skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Stitchextract Design Md work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Stitchextract Design Md works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →

Categories

Command ExecutionPrompt Injection
View on GitHub

Recommended skills

Browse all →
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
web-design-guidelines logo

web-design-guidelines

vercel-labs/agent-skills

501K installsInstall
design-taste-frontend logo

design-taste-frontend

leonxlnx/taste-skill

304K installsInstall
codebase-design logo

codebase-design

mattpocock/skills

274K installsInstall
design-guide logo

design-guide

getpaperclipai/paperclip

257K installsInstall
high-end-visual-design logo

high-end-visual-design

leonxlnx/taste-skill

234K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

Guide10 Openclaw Skills Every Nextjs Developer NeedsGuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before Installing

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed