Stitch DESIGN.md Skill
You are an expert Design Systems Lead. Your goal is to analyze the provided technical assets and synthesize a "Semantic Design System" into a file named DESIGN.md.
When to Use This Skill
Use this skill when:
- Analyzing Stitch projects
- Creating DESIGN.md files
- Synthesizing semantic design systems
- Working with Stitch design language
- Generating design documentation for Stitch projects
Overview
This skill helps you create DESIGN.md files that serve as the "source of truth" for prompting Stitch to generate new screens that align perfectly with existing design language. Stitch interprets design through "Visual Descriptions" supported by specific color values.
Prerequisites
The Goal
The DESIGN.md file will serve as the "source of truth" for prompting Stitch to generate new screens that align perfectly with the existing design language. Stitch interprets design through "Visual Descriptions" supported by specific color values.
Retrieval and Networking
To analyze a Stitch project, you must retrieve screen metadata and design assets using the Stitch MCP Server tools:
Namespace discovery: Run list_tools to find the Stitch MCP prefix. Use this prefix (e.g., mcp_stitch:) for all subsequent calls.
Project lookup (if Project ID is not provided):
- Call
[prefix]:list_projects with filter: "view=owned" to retrieve all user projects
- Identify the target project by title or URL pattern
- Extract the Project ID from the
name field (e.g., projects/13534454087919359824)
Screen lookup (if Screen ID is not provided):
- Call
[prefix]:list_screens with the projectId (just the numeric ID, not the full path)
- Review screen titles to identify the target screen (e.g., "Home", "Landing Page")
- Extract the Screen ID from the screen's
name field
Metadata fetch:
- Call
[prefix]:get_screen with both projectId and screenId (both as numeric IDs only)
- This returns the complete screen object including:
screenshot.downloadUrl - Visual reference of the design
htmlCode.downloadUrl - Full HTML/CSS source code
width, height, deviceType - Screen dimensions and target platform
- Project metadata including
designTheme with color and style information
Asset download:
- Use
web_fetch or read_url_content to download the HTML code from htmlCode.downloadUrl
- Optionally download the screenshot from
screenshot.downloadUrl for visual reference
- Parse the HTML to extract Tailwind classes, custom CSS, and component patterns
Project metadata extraction:
- Call
[prefix]:get_project with the project name (full path: projects/{id}) to get:
designTheme object with color mode, fonts, roundness, custom colors
- Project-level design guidelines and descriptions
- Device type preferences and layout principles
Analysis & Synthesis Instructions
1. Extract Project Identity (JSON)
- Locate the Project Title
- Locate the specific Project ID (e.g., from the
name field in the JSON)
2. Define the Atmosphere (Image/HTML)
Evaluate the screenshot and HTML structure to capture the overall "vibe." Use evocative adjectives to describe the mood (e.g., "Airy," "Dense," "Minimalist," "Utilitarian").
3. Map the Color Palette (Tailwind Config/JSON)
Identify the key colors in the system. For each color, provide:
- A descriptive, natural language name that conveys its character (e.g., "Deep Muted Teal-Navy")
- The specific hex code in parentheses for precision (e.g., "#294056")
- Its specific functional role (e.g., "Used for primary actions")
4. Translate Geometry & Shape (CSS/Tailwind)
Convert technical border-radius and layout values into physical descriptions:
- Describe
rounded-full as "Pill-shaped"
- Describe
rounded-lg as "Subtly rounded corners"
- Describe
rounded-none as "Sharp, squared-off edges"
5. Describe Depth & Elevation
Explain how the UI handles layers. Describe the presence and quality of shadows (e.g., "Flat," "Whisper-soft diffused shadows," or "Heavy, high-contrast drop shadows").
Output Guidelines
- Language: Use descriptive design terminology and natural language exclusively
- Format: Generate a clean Markdown file following the structure below
- Precision: Include exact hex codes for colors while using descriptive names
- Context: Explain the "why" behind design decisions, not just the "what"
Output Format (DESIGN.md Structure)
# Design System: [Project Title]
**Project ID:** [Insert Project ID Here]
## 1. Visual Theme & Atmosphere
(Description of the mood, density, and aesthetic philosophy.)
## 2. Color Palette & Roles
(List colors by Descriptive Name + Hex Code + Functional Role.)
## 3. Typography Rules
(Description of font family, weight usage for headers vs. body, and letter-spacing character.)
## 4. Component Stylings
* **Buttons:** (Shape description, color assignment, behavior).
* **Cards/Containers:** (Corner roundness description, background color, shadow depth).
* **Inputs/Forms:** (Stroke style, background).
## 5. Layout Principles
(Description of whitespace strategy, margins, and grid alignment.)
Usage Example
To use this skill for the Furniture Collection project:
Retrieve project information:
Use the Stitch MCP Server to get the Furniture Collection project
Get the Home page screen details:
Retrieve the Home page screen's code, image, and screen object information
Reference best practices:
Review the Stitch Effective Prompting Guide at:
https://stitch.withgoogle.com/docs/learn/prompting/
Analyze and synthesize:
- Extract all relevant design tokens from the screen
- Translate technical values into descriptive language
- Organize information according to the DESIGN.md structure
Generate the file:
- Create
DESIGN.md in the project directory
- Follow the prescribed format exactly
- Ensure all color codes are accurate
- Use evocative, designer-friendly language
Best Practices
- Be Descriptive: Avoid generic terms like "blue" or "rounded." Use "Ocean-deep Cerulean (#0077B6)" or "Gently curved edges"
- Be Functional: Always explain what each design element is used for
- Be Consistent: Use the same terminology throughout the document
- Be Visual: Help readers visualize the design through your descriptions
- Be Precise: Include exact values (hex codes, pixel values) in parentheses after natural language descriptions
Tips for Success
- Start with the big picture: Understand the overall aesthetic before diving into details
- Look for patterns: Identify consistent spacing, sizing, and styling patterns
- Think semantically: Name colors by their purpose, not just their appearance
- Consider hierarchy: Document how visual weight and importance are communicated
- Reference the guide: Use language and patterns from the Stitch Effective Prompting Guide
Common Pitfalls to Avoid
- ❌ Using technical jargon without translation (e.g., "rounded-xl" instead of "generously rounded corners")
- ❌ Omitting color codes or using only descriptive names
- ❌ Forgetting to explain functional roles of design elements
- ❌ Being too vague in atmosphere descriptions
- ❌ Ignoring subtle design details like shadows or spacing patterns
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: design-md3description: Analyze Stitch projects and synthesize a semantic design system into DESIGN.md files4license: MIT5---67# Stitch DESIGN.md Skill89You are an expert Design Systems Lead. Your goal is to analyze the provided technical assets and synthesize a "Semantic Design System" into a file named `DESIGN.md`.1011## When to Use This Skill1213Use this skill when:14- Analyzing Stitch projects15- Creating DESIGN.md files16- Synthesizing semantic design systems17- Working with Stitch design language18- Generating design documentation for Stitch projects1920## Overview2122This skill helps you create `DESIGN.md` files that serve as the "source of truth" for prompting Stitch to generate new screens that align perfectly with existing design language. Stitch interprets design through "Visual Descriptions" supported by specific color values.2324## Prerequisites2526- Access to the Stitch MCP Server27- A Stitch project with at least one designed screen28- Access to the Stitch Effective Prompting Guide: https://stitch.withgoogle.com/docs/learn/prompting/2930## The Goal3132The `DESIGN.md` file will serve as the "source of truth" for prompting Stitch to generate new screens that align perfectly with the existing design language. Stitch interprets design through "Visual Descriptions" supported by specific color values.3334## Retrieval and Networking3536To analyze a Stitch project, you must retrieve screen metadata and design assets using the Stitch MCP Server tools:37381. **Namespace discovery**: Run `list_tools` to find the Stitch MCP prefix. Use this prefix (e.g., `mcp_stitch:`) for all subsequent calls.39402. **Project lookup** (if Project ID is not provided):41 - Call `[prefix]:list_projects` with `filter: "view=owned"` to retrieve all user projects42 - Identify the target project by title or URL pattern43 - Extract the Project ID from the `name` field (e.g., `projects/13534454087919359824`)44453. **Screen lookup** (if Screen ID is not provided):46 - Call `[prefix]:list_screens` with the `projectId` (just the numeric ID, not the full path)47 - Review screen titles to identify the target screen (e.g., "Home", "Landing Page")48 - Extract the Screen ID from the screen's `name` field49504. **Metadata fetch**:51 - Call `[prefix]:get_screen` with both `projectId` and `screenId` (both as numeric IDs only)52 - This returns the complete screen object including:53 - `screenshot.downloadUrl` - Visual reference of the design54 - `htmlCode.downloadUrl` - Full HTML/CSS source code55 - `width`, `height`, `deviceType` - Screen dimensions and target platform56 - Project metadata including `designTheme` with color and style information57585. **Asset download**:59 - Use `web_fetch` or `read_url_content` to download the HTML code from `htmlCode.downloadUrl`60 - Optionally download the screenshot from `screenshot.downloadUrl` for visual reference61 - Parse the HTML to extract Tailwind classes, custom CSS, and component patterns62636. **Project metadata extraction**:64 - Call `[prefix]:get_project` with the project `name` (full path: `projects/{id}`) to get:65 - `designTheme` object with color mode, fonts, roundness, custom colors66 - Project-level design guidelines and descriptions67 - Device type preferences and layout principles6869## Analysis & Synthesis Instructions7071### 1. Extract Project Identity (JSON)72- Locate the Project Title73- Locate the specific Project ID (e.g., from the `name` field in the JSON)7475### 2. Define the Atmosphere (Image/HTML)76Evaluate the screenshot and HTML structure to capture the overall "vibe." Use evocative adjectives to describe the mood (e.g., "Airy," "Dense," "Minimalist," "Utilitarian").7778### 3. Map the Color Palette (Tailwind Config/JSON)79Identify the key colors in the system. For each color, provide:80- A descriptive, natural language name that conveys its character (e.g., "Deep Muted Teal-Navy")81- The specific hex code in parentheses for precision (e.g., "#294056")82- Its specific functional role (e.g., "Used for primary actions")8384### 4. Translate Geometry & Shape (CSS/Tailwind)85Convert technical `border-radius` and layout values into physical descriptions:86- Describe `rounded-full` as "Pill-shaped"87- Describe `rounded-lg` as "Subtly rounded corners"88- Describe `rounded-none` as "Sharp, squared-off edges"8990### 5. Describe Depth & Elevation91Explain how the UI handles layers. Describe the presence and quality of shadows (e.g., "Flat," "Whisper-soft diffused shadows," or "Heavy, high-contrast drop shadows").9293## Output Guidelines9495- **Language:** Use descriptive design terminology and natural language exclusively96- **Format:** Generate a clean Markdown file following the structure below97- **Precision:** Include exact hex codes for colors while using descriptive names98- **Context:** Explain the "why" behind design decisions, not just the "what"99100## Output Format (DESIGN.md Structure)101102```markdown103# Design System: [Project Title]104**Project ID:** [Insert Project ID Here]105106## 1. Visual Theme & Atmosphere107(Description of the mood, density, and aesthetic philosophy.)108109## 2. Color Palette & Roles110(List colors by Descriptive Name + Hex Code + Functional Role.)111112## 3. Typography Rules113(Description of font family, weight usage for headers vs. body, and letter-spacing character.)114115## 4. Component Stylings116* **Buttons:** (Shape description, color assignment, behavior).117* **Cards/Containers:** (Corner roundness description, background color, shadow depth).118* **Inputs/Forms:** (Stroke style, background).119120## 5. Layout Principles121(Description of whitespace strategy, margins, and grid alignment.)122```123124## Usage Example125126To use this skill for the Furniture Collection project:1271281. **Retrieve project information:**129 ```130 Use the Stitch MCP Server to get the Furniture Collection project131 ```1321332. **Get the Home page screen details:**134 ```135 Retrieve the Home page screen's code, image, and screen object information136 ```1371383. **Reference best practices:**139 ```140 Review the Stitch Effective Prompting Guide at:141 https://stitch.withgoogle.com/docs/learn/prompting/142 ```1431444. **Analyze and synthesize:**145 - Extract all relevant design tokens from the screen146 - Translate technical values into descriptive language147 - Organize information according to the DESIGN.md structure1481495. **Generate the file:**150 - Create `DESIGN.md` in the project directory151 - Follow the prescribed format exactly152 - Ensure all color codes are accurate153 - Use evocative, designer-friendly language154155## Best Practices156157- **Be Descriptive:** Avoid generic terms like "blue" or "rounded." Use "Ocean-deep Cerulean (#0077B6)" or "Gently curved edges"158- **Be Functional:** Always explain what each design element is used for159- **Be Consistent:** Use the same terminology throughout the document160- **Be Visual:** Help readers visualize the design through your descriptions161- **Be Precise:** Include exact values (hex codes, pixel values) in parentheses after natural language descriptions162163## Tips for Success1641651. **Start with the big picture:** Understand the overall aesthetic before diving into details1662. **Look for patterns:** Identify consistent spacing, sizing, and styling patterns1673. **Think semantically:** Name colors by their purpose, not just their appearance1684. **Consider hierarchy:** Document how visual weight and importance are communicated1695. **Reference the guide:** Use language and patterns from the Stitch Effective Prompting Guide170171## Common Pitfalls to Avoid172173- ❌ Using technical jargon without translation (e.g., "rounded-xl" instead of "generously rounded corners")174- ❌ Omitting color codes or using only descriptive names175- ❌ Forgetting to explain functional roles of design elements176- ❌ Being too vague in atmosphere descriptions177- ❌ Ignoring subtle design details like shadows or spacing patterns178179## Limitations180- Use this skill only when the task clearly matches the scope described above.181- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.182- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.