firecrawl-website-design-clone
Extract any website's design system into an agent-ready DESIGN.md using Firecrawl scrape evidence. Use when the user wants colors, fonts, spacing, components, layout patterns, or brand/UI guidance from a website so AI agents can create new websites, clone a look, or build pages inspired by that design.
What this skill does
# Firecrawl Website Design Clone Use this when the user wants one URL turned into a practical design system file agents can use immediately. Default outcome: **extract any website's design system in one line** and format it as `DESIGN.md`. The skill should feel like a thin workflow around Firecrawl scrape: gather the page's visible content, structure, metadata, links, and available visual signals, then synthesize those findings into a clean design-system markdown file. ## Onboarding Interview Infer the source URL, target stack, and whether implementation is requested from context. If the user gives a URL and asks for a design system, proceed immediately. Ask at most 1-3 concise questions only if blocked, such as the website URL, whether to output only `DESIGN.md` or also implement, or a required target stack. Use the host agent's normal prompt or modal UI. Do not name a harness-specific question function. ## Firecrawl Collection Plan Use Firecrawl through the CLI or equivalent tool surface. Always start with two parallel scrapes of the supplied URL: 1. The `branding` and `images` formats together for structured design tokens and the full set of page images. 2. A full-page screenshot for visual context. Example: ```bash firecrawl scrape "https://example.com" --format branding,images -o ".firecrawl/example-branding.json" --pretty & firecrawl scrape "https://example.com" --full-page-screenshot -o ".firecrawl/example-screenshot.png" & wait ``` Combining `branding` and `images` in one call still costs a single credit and is required: the `branding` block only surfaces curated brand assets (`logo`, `favicon`, `ogImage`, `logoHref`), so without `images` the agent will miss the page's actual content imagery (heroes, product shots, carousel slides, feature visuals, illustrations, accessory photos, end-of-page artwork, and similar). On a product page like `tesla.com/cybertruck` the `branding` block has no hero — only `images` returns the main Cybertruck hero (e.g. `Cybertruck-Hero-Desktop-NA-SA-APAC.png`) and the rest of the page's photography. If the screenshot scrape returns a remote image URL (e.g. signed storage link) instead of a local file, download it to the same `.firecrawl/` path so `DESIGN.md` can reference a stable local asset. Use the structured `branding` output as the primary source for colors, typography, components, brand assets (logo, favicon, ogImage), personality, and confidence notes. Use the `images` list as the source of truth for the page's content imagery — hero photography, product shots, carousels, feature visuals, illustrations, and decorative graphics. Use the screenshot as the primary visual reference for layout, hierarchy, and overall feel. Add supplemental formats only when these are insufficient for the final artifact. Collect: - branding data for colors, typography, spacing, buttons, logos, brand imagery, personality, and confidence - the full `images` list for hero, product, feature, and section imagery beyond the curated brand assets - a full-page screenshot saved locally in `.firecrawl/` so it can be embedded in `DESIGN.md` - page markdown for headings, copy hierarchy, CTAs, navigation, and section order when needed - metadata and links for brand, product, and page-purpose clues when needed - HTML only when the branding output, images list, and screenshot are insufficient to infer classes, font names, CSS variables, or component structure - related pages only when the user asks for a broader site system Do not over-crawl by default. The first version should be useful from a single representative page. ## What To Extract Infer and document the site's design language: - colors: primary, secondary, accents, backgrounds, borders, text, states - typography: font families if detectable, type scale, weights, line heights, heading/body treatment - spacing: container widths, section rhythm, grid gaps, padding scale, density - layout: page structure, hero patterns, cards, grids, nav, footer, responsive assumptions - components: buttons, inputs, cards, badges, nav items, pricing blocks, testimonials, feature rows, forms - imagery and icons: style, shape language, illustration/photo treatment, logo constraints; pull representative hero, product, feature, and section images from the full `images` list rather than relying on `branding.images`, which only carries `logo`, `favicon`, `ogImage`, and `logoHref` - motion and interaction: hover states, transitions, animation style when observable or inferable - voice and content patterns: CTA wording, heading style, product copy rhythm When a value cannot be measured exactly from scrape output, label it as inferred and give a practical approximation. ## Parallel Work If appropriate, use sub-agents or equivalent parallel task runners. Natural splits include one page per researcher for multi-page sites, or one reviewer each for colors, typography, spacing, and components. Each parallel researcher should return source URLs, extracted evidence, inferred design tokens, and confidence notes. ## Final Deliverable Create or return a `DESIGN.md` with this structure. Embed the full-page screenshot near the top so a coding agent gets visual context alongside the tokens. ```markdown # DESIGN.md: [Source Site] ## Source - URL: [source URL] - Capture date: [date] - Evidence: [scrape/screenshot/html/links used] ## Reference Screenshot ![Full-page screenshot of [Source Site]](./.firecrawl/[source]-screenshot.png) Use this screenshot as the visual source of truth for layout, hierarchy, density, and feel. Tokens below describe the same page in machine-readable form. ## Design Summary [Short description of the visual language and what an agent should recreate] ## Design Tokens ### Colors [Named color roles with hex values when known; mark inferred values clearly] ### Typography [Fonts, fallback recommendations, scale, weights, heading/body rules] ### Spacing And Layout [Spacing scale, containers, grids, radius, shadows, borders] ## Components [Buttons, cards, nav, forms, hero, feature sections, pricing, footer, etc.] ## Page Patterns [Section order, common layouts, responsive behavior] ## Content Style [Voice, CTA style, heading patterns, copy density] ## Agent Build Instructions [Concrete instructions an AI coding agent can follow to create a new site in this style] ## Rerun Inputs workflow: firecrawl-website-design-clone source_url: [url] target_stack: [stack] output: DESIGN.md ``` If the user asks to implement, first produce or update `DESIGN.md`, then use it as the source of truth for the build. ## Quality Bar - Do not imply the user has rights to third-party logos, images, trademarks, or copy. - Prefer reusable design tokens over one-off observations. - Distinguish observed facts from inferred approximations. - Keep the output compact enough that another agent can paste it into context and build from it. - Preserve source URLs and scrape artifacts for review.
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".