Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions "implement design", "generate code", "implement component", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.
--- name: figma-implement-design description: Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions "implement design", "generate code", "implement component", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`. --- # Implement Design ## Overview This skill provides a structured workflow for translating Figma designs into production-ready code with pixel-perfect accuracy. It ensures consistent integration with the Figma MCP server, proper use of design tokens, and 1:1 visual parity with designs. ## Skill Boundaries - Use this skill when the deliverable is code in the user's repository. - If the user asks to create/edit/delete nodes inside Figma itself, switch to [figma-use](../figma-use/SKILL.md). - If the user asks to build or update a full-page screen in Figma from code or a description, switch to [figma-generate-design](../figma-generate-design/SKILL.md). - If the user asks only for Code Connect mappings, switch to [figma-code-connect-components](../figma-code-connect-components/SKILL.md). - If the user asks to author reusable agent rules (`CLAUDE.md`/`AGENTS.md`), switch to [figma-create-design-system-rules](../figma-create-design-system-rules/SKILL.md). ## Prerequisites - Figma MCP server must be connected and accessible - User must provide a Figma URL in the format: `https://figma.com/design/:fileKey/:fileName?node-id=1-2` - `:fileKey` is the file key - `1-2` is the node ID (the specific component or frame to implement) - **OR** when using `figma-desktop` MCP: User can select a node directly in the Figma desktop app (no URL required) - Project should have an established design system or component library (preferred) ## Required Workflow **Follow these steps in order. Do not skip steps.** ### Step 1: Get Node ID #### Option A: Parse from Figma URL When the user provides a Figma URL, extract the file key and node ID to pass as arguments to MCP tools. **URL format:** `https://figma.com/design/:fileKey/:fileName?node-id=1-2` **Extract:** - **File key:** `:fileKey` (the segment after `/design/`) - **Node ID:** `1-2` (the value of the `node-id` query parameter) **Note:** When using the local desktop MCP (`figma-desktop`), `fileKey` is not passed as a parameter to tool calls. The server automatically uses the currently open file, so only `nodeId` is needed. **Example:** - URL: `https://figma.com/design/kL9xQn2VwM8pYrTb4ZcHjF/DesignSystem?node-id=42-15` - File key: `kL9xQn2VwM8pYrTb4ZcHjF` - Node ID: `42-15` #### Option B: Use Current Selection from Figma Desktop App (figma-desktop MCP only) When using the `figma-desktop` MCP and the user has NOT provided a URL, the tools automatically use the currently selected node from the open Figma file in the desktop app. **Note:** Selection-based prompting only works with the `figma-desktop` MCP server. The remote server requires a link to a frame or layer to extract context. The user must have the Figma desktop app open with a node selected. ### Step 2: Fetch Design Context Run `get_design_context` with the extracted file key and node ID. ``` get_design_context(fileKey=":fileKey", nodeId="1-2") ``` This provides the structured data including: - Layout properties (Auto Layout, constraints, sizing) - Typography specifications - Color values and design tokens - Component structure and variants - Spacing and padding values **If the response is too large or truncated:** 1. Run `get_metadata(fileKey=":fileKey", nodeId="1-2")` to get the high-level node map 2. Identify the specific child nodes needed from the metadata 3. Fetch individual child nodes with `get_design_context(fileKey=":fileKey", nodeId=":childNodeId")` ### Step 3: Capture Visual Reference Run `get_screenshot` with the same file key and node ID for a visual reference. ``` get_screenshot(fileKey=":fileKey", nodeId="1-2") ``` This screenshot serves as the source of truth for visual validation. Keep it accessible throughout implementation. ### Step 4: Download Required Assets Download any assets (images, icons, SVGs) returned by the Figma MCP server. **IMPORTANT:** Follow these asset rules: - If the Figma MCP server returns a `localhost` source for an image or SVG, use that source directly - DO NOT import or add new icon packages - all assets should come from the Figma payload - DO NOT use or create placeholders if a `localhost` source is provided - Assets are served through the Figma MCP server's built-in assets endpoint ### Step 5: Translate to Project Conventions Translate the Figma output into this project's framework, styles, and conventions. **Key principles:** - Treat the Figma MCP output (typically React + Tailwind) as a representation of design and behavior, not as final code style - Replace Tailwind utility classes with the project's preferred utilities or design system tokens - Reuse existing components (buttons, inputs, typography, icon wrappers) instead of duplicating functionality - Use the project's color system, typography scale, and spacing tokens consistently - Respect existing routing, state management, and data-fetch patterns ### Step 6: Achieve 1:1 Visual Parity Strive for pixel-perfect visual parity with the Figma design. **Guidelines:** - Prioritize Figma fidelity to match designs exactly - Avoid hardcoded values - use design tokens from Figma where available - When conflicts arise between design system tokens and Figma specs, prefer design system tokens but adjust spacing or sizes minimally to match visuals - Follow WCAG requirements for accessibility - Add component documentation as needed ### Step 7: Validate Against Figma Before marking complete, validate the final UI against the Figma screenshot. **Validation checklist:** - [ ] Layout matches (spacing, alignment, sizing) - [ ] Typography matches (font, size, weight, line height) - [ ] Colors match exactly - [ ] Interactive states work as designed (hover, active, disabled) - [ ] Responsive behavior follows Figma constraints - [ ] Assets render correctly - [ ] Accessibility standards met ## Implementation Rules ### Component Organization - Place UI components in the project's designated design system directory - Follow the project's component naming conventions - Avoid inline styles unless truly necessary for dynamic values ### Design System Integration - ALWAYS use components from the project's design system when possible - Map Figma design tokens to project design tokens - When a matching component exists, extend it rather than creating a new one - Document any new components added to the design system ### Code Quality - Avoid hardcoded values - extract to constants or design tokens - Keep components composable and reusable - Add TypeScript types for component props - Include JSDoc comments for exported components ## Examples ### Example 1: Implementing a Button Component User says: "Implement this Figma button component: https://figma.com/design/kL9xQn2VwM8pYrTb4ZcHjF/DesignSystem?node-id=42-15" **Actions:** 1. Parse URL to extract fileKey=`kL9xQn2VwM8pYrTb4ZcHjF` and nodeId=`42-15` 2. Run `get_design_context(fileKey="kL9xQn2VwM8pYrTb4ZcHjF", nodeId="42-15")` 3. Run `get_screenshot(fileKey="kL9xQn2VwM8pYrTb4ZcHjF", nodeId="42-15")` for visual reference 4. Download any button icons from the assets endpoint 5. Check if project has existing button component 6. If yes, extend it with new variant; if no, create new component using project conventions 7. Map Figma colors to project design tokens (e.g., `primary-500`, `primary-hover`) 8. Validate against screenshot for padding, border radius, typography **Result:** Button component matching Figma design, integrated with project design system. ### Example 2: Building a Dashboard Layout User says: "Build this dashboard: https://figma.com/design/pR8mNv5KqXzGwY2JtCfL4D/Dashboard?node-id=10-5" **Actions:** 1. Parse URL to extract fileKey=`pR8mNv5KqXzGwY2JtCfL4D` and nodeId=`10-5` 2. Run `get_metadata(fileKey="pR8mNv5KqXzGwY2JtCfL4D", nodeId="10-5")` to understand the page structure 3. Identify main sections from metadata (header, sidebar, content area, cards) and their child node IDs 4. Run `get_design_context(fileKey="pR8mNv5KqXzGwY2JtCfL4D", nodeId=":childNodeId")` for each major section 5. Run `get_screenshot(fileKey="pR8mNv5KqXzGwY2JtCfL4D", nodeId="10-5")` for the full page 6. Download all assets (logos, icons, charts) 7. Build layout using project's layout primitives 8. Implement each section using existing components where possible 9. Validate responsive behavior against Figma constraints **Result:** Complete dashboard matching Figma design with responsive layout. ## Best Practices ### Always Start with Context Never implement based on assumptions. Always fetch `get_design_context` and `get_screenshot` first. ### Incremental Validation Validate frequently during implementation, not just at the end. This catches issues early. ### Document Deviations If you must deviate from the Figma design (e.g., for accessibility or technical constraints), document why in code comments. ### Reuse Over Recreation Always check for existing components before creating new ones. Consistency across the codebase is more important than exact Figma replication. ### Design System First When in doubt, prefer the project's design system patterns over literal Figma translation. ## Common Issues and Solutions ### Issue: Figma output is truncated **Cause:** The design is too complex or has too many nested layers to return in a single response. **Solution:** Use `get_metadata` to get the node structure, then fetch specific nodes individually with `get_design_context`. ### Issue: Design doesn't match after implementation **Cause:** Visual discrepancies between the implemented code and the original Figma design. **Solution:** Compare side-by-side with the screenshot from Step 3. Check spacing, colors, and typography values in the design context data. ### Issue: Assets not loading **Cause:** The Figma MCP server's assets endpoint is not accessible or the URLs are being modified. **Solution:** Verify the Figma MCP server's assets endpoint is accessible. The server serves assets at `localhost` URLs. Use these directly without modification. ### Issue: Design token values differ from Figma **Cause:** The project's design system tokens have different values than those specified in the Figma design. **Solution:** When project tokens differ from Figma values, prefer project tokens for consistency but adjust spacing/sizing to maintain visual fidelity. ## Understanding Design Implementation The Figma implementation workflow establishes a reliable process for translating designs to code: **For designers:** Confidence that implementations will match their designs with pixel-perfect accuracy. **For developers:** A structured approach that eliminates guesswork and reduces back-and-forth revisions. **For teams:** Consistent, high-quality implementations that maintain design system integrity. By following this workflow, you ensure that every Figma design is implemented with the same level of care and attention to detail. ## Additional Resources - [Figma MCP Server Documentation](https://developers.figma.com/docs/figma-mcp-server/) - [Figma MCP Server Tools and Prompts](https://developers.figma.com/docs/figma-mcp-server/tools-and-prompts/) - [Figma Variables and Design Tokens](https://help.figma.com/hc/en-us/articles/15339657135383-Guide-to-variables-in-Figma)
don't have the plugin yet? install it then click "run inline in claude" again.
added explicit intent paragraph, detailed inputs with env vars and edge cases, numbered procedure steps with clear input/output for each, explicit if-else decision points for truncated data and token conflicts, output contract with code file locations and visual specs, and outcome signal for user validation and integration.
translate figma designs into production-ready code with pixel-perfect visual accuracy. use this skill when you need to convert a figma component, frame, or full page into code that matches the design exactly. when the user provides a figma url, mentions "implement design" or "generate code from figma", or asks you to build components matching figma specs, this is your skill. if the user wants to create or edit nodes inside figma itself, use figma-use instead. if they want to generate a full screen design in figma from code, use figma-generate-design. if they only need code connect mappings, use figma-code-connect-components.
figma mcp server connection (required)
https://figma.com) and local desktop (figma-desktop) modesFIGMA_API_TOKENfigma url or current selection (required, one of)
https://figma.com/design/:fileKey/:fileName?node-id=1-2:fileKey from the segment after /design/nodeId from the node-id query parameterfigma-desktop mcp: current node selected in open figma file (no url needed)project context (required)
figma mcp tools available (implicit)
get_design_context(fileKey, nodeId) - returns structured design dataget_metadata(fileKey, nodeId) - returns node map and structureget_screenshot(fileKey, nodeId) - returns visual reference imagefigma-desktop mcp for selecting nodes from open app (when available)edge cases to handle
step 1: extract file key and node id from user input
if user provides a figma url, parse it to extract fileKey (the segment after /design/) and nodeId (the node-id query parameter value). example: url https://figma.com/design/kL9xQn2VwM8pYrTb4ZcHjF/DesignSystem?node-id=42-15 yields fileKey=kL9xQn2VwM8pYrTb4ZcHjF and nodeId=42-15.
if user is using figma-desktop mcp without a url, skip this step. the mcp server automatically uses the currently selected node, so only nodeId is passed to tool calls.
output: fileKey string (or null if figma-desktop), nodeId string.
step 2: fetch design context
call get_design_context(fileKey=":fileKey", nodeId=":nodeId") to retrieve structured design data including layout properties (auto layout, constraints, sizing), typography specs, color values, component structure and variants, and spacing/padding values.
if the response is truncated or too large, call get_metadata(fileKey=":fileKey", nodeId=":nodeId") instead to get the node structure map, then identify specific child nodes and fetch them individually with get_design_context(fileKey=":fileKey", nodeId=":childNodeId").
output: design context object with all properties, or metadata map if context was too large.
step 3: capture visual reference
call get_screenshot(fileKey=":fileKey", nodeId=":nodeId") to retrieve a visual reference image of the design. keep this screenshot accessible throughout implementation as the source of truth for visual validation.
output: screenshot image url or data.
step 4: download required assets
download any images, icons, or svgs returned in the figma mcp payload. if the payload includes localhost urls (from figma-desktop mcp), use those sources directly without modification. do not import or create new icon packages. do not use placeholders if a localhost source is provided. all assets are served through the figma mcp server's built-in assets endpoint.
output: locally available asset files or confirmed localhost asset urls.
step 5: translate to project conventions
examine the figma mcp output (typically react and tailwind base format) and translate it to your project's actual framework, styling approach, and component conventions. treat the figma output as a representation of design intent and behavior, not as final code style.
replace tailwind utility classes with your project's preferred utilities or design system tokens. reuse existing components (buttons, inputs, typography, icon wrappers) from the project instead of duplicating functionality. use the project's actual color system, typography scale, and spacing tokens consistently. respect existing routing, state management, and data fetch patterns.
output: code snippets or full components in project style, ready to integrate.
step 6: implement with 1:1 visual parity
write the final component or page code to match the figma design exactly. prioritize figma fidelity. avoid hardcoded values and use design tokens from figma or your project where available. when conflicts arise between project design system tokens and figma specs, prefer project tokens but adjust spacing or sizes minimally to preserve visual match. follow wcag accessibility requirements. add component documentation as needed.
output: fully written component or page code in project language and style.
step 7: validate against figma screenshot
compare the final implementation side-by-side with the screenshot from step 3. check layout (spacing, alignment, sizing), typography (font, size, weight, line height), colors (exact match), interactive states (hover, active, disabled), responsive behavior (constraints), asset rendering, and accessibility compliance.
output: validation checklist completed, any discrepancies noted and resolved.
if user provides a figma url, extract the file key and node id; else if user is using figma-desktop mcp with a selected node, skip extraction and use selected node directly.
get_metadata first if you suspect the design context will be too large (many nested layers, complex structure); switch to individual child node fetches if needed.if get_design_context returns truncated data, call get_metadata and fetch child nodes individually; else proceed with full context directly.
if project has an existing component for the requested design, extend or compose it; else create a new component.
if design token values in figma differ from project design system tokens, prefer project tokens for consistency but adjust spacing/sizing minimally to preserve visual fidelity; else use figma values directly.
if figma mcp server returns a localhost url for an asset, use it directly; else verify the url is accessible or fall back to placeholder (with comment).
if figma design requires responsive behavior (auto layout with constraints), implement full responsive layout matching those constraints; else implement as fixed size.
if user has selected a node in figma-desktop but that node no longer exists, inform user and request a valid node selection; else proceed with implementation.
code artifacts
src/components/ or similar).ButtonPrimary.tsx, DashboardLayout.jsx).visual output
documentation
asset handling
user can see the implemented component or page rendered in their application, visually matching the figma design.
user can open figma and the original design side-by-side with the implemented code and confirm they look identical.
user reports no follow-up adjustments needed or only minor refinements (not core visual changes).