Source profileQuality 69/100

openai/skills/skills/.curated/figma/SKILL.md

figma

Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.

Source repository stars
24,265
Declared platforms
0
Static risk flags
1
Last source update
2026-07-14
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Use the Figma MCP server for Figma-driven implementation. For setup and debugging details (env vars, config, verification), see references/figma-mcp-config.md.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/openai/skills --skill "skills/.curated/figma"
    Safe inspection promptEditorial

    Inspect the Agent Skill "figma" from https://github.com/openai/skills/blob/49f948faa9258a0c61caceaf225e179651397431/skills/.curated/figma/SKILL.md at commit 49f948faa9258a0c61caceaf225e179651397431. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Implementation rules

      Treat the Figma MCP output (React + Tailwind) as a representation of design and behavior, not as final code style.

      Treat the Figma MCP output (React + Tailwind) as a representation of design and behavior, not as final code style.Replace Tailwind utility classes with the project's preferred utilities/design-system tokens when applicable.Reuse existing components (e.g., buttons, inputs, typography, icon wrappers) instead of duplicating functionality.
    2. 02

      Figma MCP Integration Rules

      These rules define how to translate Figma inputs into code for this project and must be followed for every Figma-driven change.

      Run getdesigncontext first to fetch the structured representation for the exact node(s).If the response is too large or truncated, run getmetadata to get the high-level node map and then re-fetch only the required node(s) with getdesigncontext.Run getscreenshot for a visual reference of the node variant being implemented.
    3. 03

      Required flow (do not skip)

      1. Run getdesigncontext first to fetch the structured representation for the exact node(s). 2. If the response is too large or truncated, run getmetadata to get the high-level node map and then re-fetch only the required node(s) with getdesigncontext. 3. Run getscreenshot for a…

      Run getdesigncontext first to fetch the structured representation for the exact node(s).If the response is too large or truncated, run getmetadata to get the high-level node map and then re-fetch only the required node(s) with getdesigncontext.Run getscreenshot for a visual reference of the node variant being implemented.
    4. 04

      Asset handling

      The Figma MCP Server provides an assets endpoint which can serve image and SVG assets.

      The Figma MCP Server provides an assets endpoint which can serve image and SVG assets.IMPORTANT: If the Figma MCP Server returns a localhost source for an image or an SVG, use that image or SVG source directly.IMPORTANT: DO NOT import/add new icon packages, all the assets should be in the Figma payload.

    Permission review

    Static risk signals and limitations

    Network access

    medium · line 33

    The documentation includes network, browsing, or remote request actions.

    The client cannot browse the URL but extracts the node ID from the link; always ensure the link points to the exact node/variant you want.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score69/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars24,265SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    openai/skills
    Skill path
    skills/.curated/figma/SKILL.md
    Commit
    49f948faa9258a0c61caceaf225e179651397431
    License
    Not declared
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Figma MCP

    Use the Figma MCP server for Figma-driven implementation. For setup and debugging details (env vars, config, verification), see references/figma-mcp-config.md.

    Figma MCP Integration Rules

    These rules define how to translate Figma inputs into code for this project and must be followed for every Figma-driven change.

    Required flow (do not skip)

    1. Run get_design_context first to fetch the structured representation for the exact node(s).
    2. If the response is too large or truncated, run get_metadata to get the high-level node map and then re-fetch only the required node(s) with get_design_context.
    3. Run get_screenshot for a visual reference of the node variant being implemented.
    4. Only after you have both get_design_context and get_screenshot, download any assets needed and start implementation.
    5. Translate the output (usually React + Tailwind) into this project's conventions, styles and framework. Reuse the project's color tokens, components, and typography wherever possible.
    6. Validate against Figma for 1:1 look and behavior before marking complete.

    Implementation rules

    • Treat the Figma MCP output (React + Tailwind) as a representation of design and behavior, not as final code style.
    • Replace Tailwind utility classes with the project's preferred utilities/design-system tokens when applicable.
    • Reuse existing components (e.g., 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 already adopted in the repo.
    • Strive for 1:1 visual parity with the Figma design. When conflicts arise, prefer design-system tokens and adjust spacing or sizes minimally to match visuals.
    • Validate the final UI against the Figma screenshot for both look and behavior.

    Asset handling

    • The Figma MCP Server provides an assets endpoint which can serve image and SVG assets.
    • IMPORTANT: If the Figma MCP Server returns a localhost source for an image or an SVG, use that image or SVG source directly.
    • IMPORTANT: DO NOT import/add new icon packages, all the assets should be in the Figma payload.
    • IMPORTANT: do NOT use or create placeholders if a localhost source is provided.

    Link-based prompting

    • The server is link-based: copy the Figma frame/layer link and give that URL to the MCP client when asking for implementation help.
    • The client cannot browse the URL but extracts the node ID from the link; always ensure the link points to the exact node/variant you want.

    References

    • references/figma-mcp-config.md — setup, verification, troubleshooting, and link-based usage reminders.
    • references/figma-tools-and-prompts.md — tool catalog and prompt patterns for selecting frameworks/components and fetching metadata.

    Alternatives

    Compare before choosing

    Computed 9438,313

    wshobson/agents

    brand-landingpage

    Brand-first landing page designer — runs a brand-identity interview (colors, typography, shape language), then generates and iterates on a polished landing page via Stitch with deployment-ready HTML. Use when the user asks to create, design, or build a landing page, homepage, or marketing page and has no established visual direction. Skip when they have a design mockup, need a dashboard or app UI, are working at component level, building a multi-page app, or restyling with known design tokens —

    Computed 91234,327

    affaan-m/ECC

    videodb

    See, Understand, Act on video and audio. See- ingest from local files, URLs, RTSP/live feeds, or live record desktop; return realtime context and playable stream links. Understand- extract frames, build visual/semantic/temporal indexes, and search moments with timestamps and auto-clips. Act- transcode and normalize (codec, fps, resolution, aspect ratio), perform timeline edits (subtitles, text/image overlays, branding, audio overlays, dubbing, translation), generate media assets (image, audio, v

    Computed 91933

    dpearson2699/swift-ios-skills

    ios-localization

    Implement, review, or improve localization and internationalization in iOS/macOS apps — String Catalogs (.xcstrings), generated localizable symbols, stable key naming, LocalizedStringKey, LocalizedStringResource, pluralization, FormatStyle for numbers/dates/measurements, right-to-left layout, Dynamic Type, and locale-aware formatting. Use when adding multi-language support, setting up String Catalogs, enabling generated symbols for compile-time-safe localization keys, handling plural forms, form

    Computed 8524,265

    openai/skills

    figma-implement-design

    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`.