inspiration-analyzer

Solid

Analyze websites for design inspiration, extracting colors, typography, layouts, and patterns. Use when you have specific URLs to analyze for a design project.

Web & Frontend 2,996 stars 363 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 90/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
40
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Inspiration Analyzer Analyze websites to extract design inspiration including colors, typography, layouts, and UI patterns. ## Purpose When a user provides inspiration URLs, this skill: - Visits each site using browser tools - Takes screenshots for visual analysis - Extracts specific design elements - Creates structured inspiration report - Identifies replicable patterns ## Workflow ### Step 1: Get Browser Context ```javascript // Get or create browser tab tabs_context_mcp({ createIfEmpty: true }) tabs_create_mcp() ``` ### Step 2: Navigate to URL ```javascript navigate({ url: "https://example.com", tabId: tabId }) ``` ### Step 3: Capture Screenshots Take multiple screenshots to capture the full experience: 1. **Hero/Above-fold**: Initial viewport 2. **Scrolled sections**: Scroll and capture 3. **Interactive states**: Hover on navigation, buttons 4. **Mobile view**: Resize to mobile width ```javascript // Full page screenshot computer({ action: "screenshot", tabId: tabId }) // Scroll and capture more computer({ action: "scroll", scroll_direction: "down", tabId: tabId }) computer({ action: "screenshot", tabId: tabId }) // Mobile view resize_window({ width: 375, height: 812, tabId: tabId }) computer({ action: "screenshot", tabId: tabId }) ``` ### Step 4: Analyze Elements From screenshots and page content, extract: #### Colors - **Primary color**: Main brand color - **Secondary colors**: Supporting palette - **Background color**: Page and section backgrounds - ...

Details

Author
davepoon
Repository
davepoon/buildwithclaude
Created
10 months ago
Last Updated
yesterday
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Web & Frontend Solid

design-mirror

Replicate the visual style of any website and apply it to your existing codebase. Use this skill whenever the user wants to match a site's design, mirror a UI aesthetic, make their app look like another site, or replicate a specific visual style from a URL. Trigger on phrases like 'make it look like', 'match the design of', 'copy the style from', 'I want my app to look like X', 'mirror this design', 'inspired by [url]', or any time the user points at a website and says they want their frontend to match it.

27,705 Updated today
davila7
Web & Frontend Solid

trend-researcher

Research latest UI/UX trends from Dribbble and design communities. Use when starting a design project to understand current visual trends, color palettes, and layout patterns.

2,996 Updated yesterday
davepoon
Web & Frontend Listed

ui-analyzer

Analyze UI design screenshots and generate React components with TypeScript and Tailwind CSS. Use this skill when the user provides UI mockups, design screenshots, or Figma exports and requests implementation. Provides detailed layout analysis, component breakdown, design token extraction, and production-ready code generation following best practices.

7 Updated today
kyawshinethu
Web & Frontend Solid

design-system

Extract a complete design system from an existing website or screenshot into a DESIGN.md file. Analyses colours, typography, component styles, spacing, and atmosphere through browser automation and HTML inspection. Produces a semantic design system document optimised for consistent page generation. Triggers: 'extract design system', 'design system', 'create DESIGN.md', 'analyse the design', 'what design does this site use', 'extract styles from', 'reverse engineer the design'.

813 Updated 2 weeks ago
jezweb
Web & Frontend Solid

moodboard-creator

Create visual moodboards from collected inspiration with iterative refinement. Use after trend research or website analysis to synthesize design direction before implementation.

2,996 Updated yesterday
davepoon