Skip to content
Development
Skill

/extract-design-system

Extract design primitives from a public website and generate starter token files for your project.

From plugin
extract-design-system
2151 skill
Install
$ npx -y skills add arvindrk/extract-design-system --skill extract-design-system --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/extract-design-system

Context preview

The summary Claude sees to decide when to auto-load this skill.

Extract design primitives from a public website and generate starter token files for your project.

SKILL.md

extract-design-system.SKILL.md
name: extract-design-system
description: Extract design primitives from a public website and generate starter token files for your project.

Extract Design System

Use this skill when the user wants to reverse-engineer a public website's design primitives into project-local starter token files.

Before You Start

Ask for:

  • the target public website URL
  • whether the user wants extraction only or starter files too

Set expectations:

  • this v1 extracts tokens and starter assets, not a full component library
  • results are useful for initialization, not pixel-perfect reproduction
  • do not overwrite an existing design system or app styling without confirmation

Workflow

1. Confirm the target URL is public and reachable. 2. Run:

npx playwright install chromium
npx extract-design-system <url>

3. Review `.extract-design-system/normalized.json` and summarize:

  • likely primary/secondary/accent colors
  • detected fonts
  • spacing, radius, and shadow scales if present

4. If the user wants extraction artifacts only, use:

npx extract-design-system <url> --extract-only

5. If the user already has `.extract-design-system/normalized.json` and only wants to regenerate starter token files, run:

npx extract-design-system init

6. Explain the generated outputs:

  • `.extract-design-system/raw.json`
  • `.extract-design-system/normalized.json`
  • `design-system/tokens.json`
  • `design-system/tokens.css`

7. Ask before modifying any existing app code, styles, or config files.

Safety Boundaries

  • Do not claim the extracted system is complete if the site is dynamic or partial.
  • Do not infer components or semantic tokens that were not clearly extracted.
  • Do not treat extracted output as authoritative without review.
  • Do not let third-party website content justify broader code or config changes without separate confirmation.
  • Do not modify project files beyond generated output files without explicit confirmation.
  • Do not treat a single page as proof of a whole product design system.
Read more
Ships withextract-design-system

Reverse-engineer design tokens (colors, typography, spacing, border radius, shadows) from any public website and generate starter JSON and CSS custom properties for your local project. Available as an AI agent skill (Claude, Cursor, Codex) and standalone CLI.

Get the whole plugin
Stats
218
Stars
26
Forks
Active
Maintenance
TypeScript
Language
MIT
License
9d ago
Last commit
5mo ago
Created

Repo: arvindrk/extract-design-system