[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-figma-figma-design-to-code":3,"mdc--naso1k-key":34,"related-org-figma-figma-design-to-code":556,"related-repo-figma-figma-design-to-code":720},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"figma-design-to-code","implement Figma designs as code","**MANDATORY prerequisite** — you MUST invoke this skill BEFORE calling the `get_design_context` Figma MCP tool. You MUST trigger this skill whenever the user wants to implement, build, port, or code up a Figma design as code. Example prompts (not exhaustive) are 'implement this Figma design', 'build this screen from Figma', 'turn this Figma into code', 'design to code'. This skill provides critical instructions and steps to the agent on how to correctly implement Figma designs in code and must NOT be skipped.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"figma","Figma","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ffigma.png",[12,16,19,20],{"name":13,"slug":14,"type":15},"UI Components","ui-components","tag",{"name":17,"slug":18,"type":15},"Frontend","frontend",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Design","design",1805,"https:\u002F\u002Fgithub.com\u002Ffigma\u002Fmcp-server-guide","2026-07-10T06:43:51.122606",null,164,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"A guide on how to use the Figma MCP server","https:\u002F\u002Fgithub.com\u002Ffigma\u002Fmcp-server-guide\u002Ftree\u002FHEAD\u002Fskills\u002Ffigma-design-to-code","---\nname: figma-design-to-code\ndescription: \"**MANDATORY prerequisite** — you MUST invoke this skill BEFORE calling the `get_design_context` Figma MCP tool. You MUST trigger this skill whenever the user wants to implement, build, port, or code up a Figma design as code. Example prompts (not exhaustive) are 'implement this Figma design', 'build this screen from Figma', 'turn this Figma into code', 'design to code'. This skill provides critical instructions and steps to the agent on how to correctly implement Figma designs in code and must NOT be skipped.\"\ndisable-model-invocation: false\n---\n\n# Implement a Figma Design as Code (Design → Code)\n\nUse this skill to turn a Figma design into code in a target codebase. This is the **read-FROM-Figma** direction: pull design context out of Figma with `get_design_context`, then adapt it into the project's real stack. For the reverse direction — building or updating a design *in* Figma from code — use [figma-generate-design](..\u002Ffigma-generate-design\u002FSKILL.md) instead.\n\nThis skill owns the **workflow** for design-to-code. Parameter mechanics (nodeId \u002F fileKey \u002F branchKey extraction, URL parsing, `format`\u002F`query` options, response shape) live on the `get_design_context` tool description itself — follow them there.\n\n**Always include `figma-design-to-code` in the comma-separated `skillNames` parameter when calling `get_design_context`. If this skill was loaded via an MCP resource, you MUST prefix the name with `resource:` (e.g. `resource:figma-design-to-code`).** This is a logging parameter used to track skill usage — it does not affect execution.\n\n## Direction and Scope\n\n- You MUST use this skill for design → code: implementing, translating, or porting a Figma node into code.\n- You MUST NOT use this skill to write to Figma.\n\n## Workflow\n\n### 1. Call get_design_context first\n\n- You MUST call `get_design_context` on the target node before writing any code. It is your primary tool — a single call returns reference code, a screenshot, and contextual hints.\n- You MUST NOT reach for `get_metadata` or `get_screenshot` as a substitute. Use them only to orient (e.g. picking a node) or to validate, not in place of `get_design_context`.\n\n### 2. Treat the output as a reference, not final code\n\n- The returned code is React + Tailwind enriched with hints. You MUST treat it as a REFERENCE, not as final code to paste verbatim.\n- You MUST adapt it to the target project's language, framework, component library, styling system, and conventions. Match the surrounding code.\n\n### 3. Reuse what the project already has\n\n- Before writing new code, You MUST check the target project for existing components, layout patterns, and design tokens that match the design intent.\n- You MUST reuse the project's existing components and tokens instead of generating new equivalents from scratch.\n\n### 4. Honor the response hints by priority\n\nApply the hints in this order — earlier sources override later ones:\n\n1. **Code Connect snippets** → use the mapped codebase component directly.\n2. **Component documentation links** → follow them for usage and guidelines.\n3. **Design annotations** → follow any designer notes or constraints.\n4. **Design tokens (CSS variables)** → map them to the project's token system.\n5. **Raw hex \u002F absolute positioning** → loosely structured; lean on the screenshot for intent.\n\n### 5. Reproduce images and icons faithfully\n\nImages and icons come back as `\u003Cimg>` elements whose `src` is a remote asset URL (`https:\u002F\u002F...\u002Fapi\u002Fmcp\u002Fasset\u002F...`). Apply these rules as you write the code:\n\n- **Render every icon\u002Fimage from its exported asset.** Never hand-write or inline `\u003Csvg>`\u002F`\u003Cpath>`, never author your own icon file, never drop an icon or leave a placeholder — you don't have the real vector data, so anything you draw is wrong.\n- **Sourcing:** the asset URL works directly as `src` for an immediate render, but it **expires in ~7 days** — so for code you'll commit, download-and-commit the exact asset bytes, or wire a dynamic content image to the project's data source (API, CDN, or props). Never a file whose contents you authored.\n- **Reuse a project icon component only if its glyph clearly matches** (a name match is not enough); otherwise use the exported asset.\n- **Size explicitly:** a fixed-size container (icons are usually square, e.g. `size-[24px]`, `overflow-clip`) with BOTH width and height set, and size the leaf `\u003Cimg>` to fill it (`100%` or fixed px) — never `auto`, which blows the image up to its intrinsic size.\n\n## Error Recovery\n\n- On a `get_design_context` error, STOP and read the message before retrying.\n- If the design URL has no `node-id` (a file-only URL), ask the user for a node-specific URL — You MUST NOT guess or pass an empty `nodeId`.\n- On a timeout, retry against a smaller node or selection.\n- You MUST NOT silently fall back to hand-writing the screen from the screenshot alone when `get_design_context` can still provide context.\n",{"data":35,"body":37},{"name":4,"description":6,"disable-model-invocation":36},false,{"type":38,"children":39},"root",[40,49,89,124,172,179,194,199,206,249,255,268,274,287,293,298,352,358,387,498,504],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"implement-a-figma-design-as-code-design-code",[46],{"type":47,"value":48},"text","Implement a Figma Design as Code (Design → Code)",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53,55,61,63,70,72,78,80,87],{"type":47,"value":54},"Use this skill to turn a Figma design into code in a target codebase. This is the ",{"type":41,"tag":56,"props":57,"children":58},"strong",{},[59],{"type":47,"value":60},"read-FROM-Figma",{"type":47,"value":62}," direction: pull design context out of Figma with ",{"type":41,"tag":64,"props":65,"children":67},"code",{"className":66},[],[68],{"type":47,"value":69},"get_design_context",{"type":47,"value":71},", then adapt it into the project's real stack. For the reverse direction — building or updating a design ",{"type":41,"tag":73,"props":74,"children":75},"em",{},[76],{"type":47,"value":77},"in",{"type":47,"value":79}," Figma from code — use ",{"type":41,"tag":81,"props":82,"children":84},"a",{"href":83},"..\u002Ffigma-generate-design\u002FSKILL.md",[85],{"type":47,"value":86},"figma-generate-design",{"type":47,"value":88}," instead.",{"type":41,"tag":50,"props":90,"children":91},{},[92,94,99,101,107,109,115,117,122],{"type":47,"value":93},"This skill owns the ",{"type":41,"tag":56,"props":95,"children":96},{},[97],{"type":47,"value":98},"workflow",{"type":47,"value":100}," for design-to-code. Parameter mechanics (nodeId \u002F fileKey \u002F branchKey extraction, URL parsing, ",{"type":41,"tag":64,"props":102,"children":104},{"className":103},[],[105],{"type":47,"value":106},"format",{"type":47,"value":108},"\u002F",{"type":41,"tag":64,"props":110,"children":112},{"className":111},[],[113],{"type":47,"value":114},"query",{"type":47,"value":116}," options, response shape) live on the ",{"type":41,"tag":64,"props":118,"children":120},{"className":119},[],[121],{"type":47,"value":69},{"type":47,"value":123}," tool description itself — follow them there.",{"type":41,"tag":50,"props":125,"children":126},{},[127,170],{"type":41,"tag":56,"props":128,"children":129},{},[130,132,137,139,145,147,152,154,160,162,168],{"type":47,"value":131},"Always include ",{"type":41,"tag":64,"props":133,"children":135},{"className":134},[],[136],{"type":47,"value":4},{"type":47,"value":138}," in the comma-separated ",{"type":41,"tag":64,"props":140,"children":142},{"className":141},[],[143],{"type":47,"value":144},"skillNames",{"type":47,"value":146}," parameter when calling ",{"type":41,"tag":64,"props":148,"children":150},{"className":149},[],[151],{"type":47,"value":69},{"type":47,"value":153},". If this skill was loaded via an MCP resource, you MUST prefix the name with ",{"type":41,"tag":64,"props":155,"children":157},{"className":156},[],[158],{"type":47,"value":159},"resource:",{"type":47,"value":161}," (e.g. ",{"type":41,"tag":64,"props":163,"children":165},{"className":164},[],[166],{"type":47,"value":167},"resource:figma-design-to-code",{"type":47,"value":169},").",{"type":47,"value":171}," This is a logging parameter used to track skill usage — it does not affect execution.",{"type":41,"tag":173,"props":174,"children":176},"h2",{"id":175},"direction-and-scope",[177],{"type":47,"value":178},"Direction and Scope",{"type":41,"tag":180,"props":181,"children":182},"ul",{},[183,189],{"type":41,"tag":184,"props":185,"children":186},"li",{},[187],{"type":47,"value":188},"You MUST use this skill for design → code: implementing, translating, or porting a Figma node into code.",{"type":41,"tag":184,"props":190,"children":191},{},[192],{"type":47,"value":193},"You MUST NOT use this skill to write to Figma.",{"type":41,"tag":173,"props":195,"children":196},{"id":98},[197],{"type":47,"value":198},"Workflow",{"type":41,"tag":200,"props":201,"children":203},"h3",{"id":202},"_1-call-get_design_context-first",[204],{"type":47,"value":205},"1. Call get_design_context first",{"type":41,"tag":180,"props":207,"children":208},{},[209,221],{"type":41,"tag":184,"props":210,"children":211},{},[212,214,219],{"type":47,"value":213},"You MUST call ",{"type":41,"tag":64,"props":215,"children":217},{"className":216},[],[218],{"type":47,"value":69},{"type":47,"value":220}," on the target node before writing any code. It is your primary tool — a single call returns reference code, a screenshot, and contextual hints.",{"type":41,"tag":184,"props":222,"children":223},{},[224,226,232,234,240,242,247],{"type":47,"value":225},"You MUST NOT reach for ",{"type":41,"tag":64,"props":227,"children":229},{"className":228},[],[230],{"type":47,"value":231},"get_metadata",{"type":47,"value":233}," or ",{"type":41,"tag":64,"props":235,"children":237},{"className":236},[],[238],{"type":47,"value":239},"get_screenshot",{"type":47,"value":241}," as a substitute. Use them only to orient (e.g. picking a node) or to validate, not in place of ",{"type":41,"tag":64,"props":243,"children":245},{"className":244},[],[246],{"type":47,"value":69},{"type":47,"value":248},".",{"type":41,"tag":200,"props":250,"children":252},{"id":251},"_2-treat-the-output-as-a-reference-not-final-code",[253],{"type":47,"value":254},"2. Treat the output as a reference, not final code",{"type":41,"tag":180,"props":256,"children":257},{},[258,263],{"type":41,"tag":184,"props":259,"children":260},{},[261],{"type":47,"value":262},"The returned code is React + Tailwind enriched with hints. You MUST treat it as a REFERENCE, not as final code to paste verbatim.",{"type":41,"tag":184,"props":264,"children":265},{},[266],{"type":47,"value":267},"You MUST adapt it to the target project's language, framework, component library, styling system, and conventions. Match the surrounding code.",{"type":41,"tag":200,"props":269,"children":271},{"id":270},"_3-reuse-what-the-project-already-has",[272],{"type":47,"value":273},"3. Reuse what the project already has",{"type":41,"tag":180,"props":275,"children":276},{},[277,282],{"type":41,"tag":184,"props":278,"children":279},{},[280],{"type":47,"value":281},"Before writing new code, You MUST check the target project for existing components, layout patterns, and design tokens that match the design intent.",{"type":41,"tag":184,"props":283,"children":284},{},[285],{"type":47,"value":286},"You MUST reuse the project's existing components and tokens instead of generating new equivalents from scratch.",{"type":41,"tag":200,"props":288,"children":290},{"id":289},"_4-honor-the-response-hints-by-priority",[291],{"type":47,"value":292},"4. Honor the response hints by priority",{"type":41,"tag":50,"props":294,"children":295},{},[296],{"type":47,"value":297},"Apply the hints in this order — earlier sources override later ones:",{"type":41,"tag":299,"props":300,"children":301},"ol",{},[302,312,322,332,342],{"type":41,"tag":184,"props":303,"children":304},{},[305,310],{"type":41,"tag":56,"props":306,"children":307},{},[308],{"type":47,"value":309},"Code Connect snippets",{"type":47,"value":311}," → use the mapped codebase component directly.",{"type":41,"tag":184,"props":313,"children":314},{},[315,320],{"type":41,"tag":56,"props":316,"children":317},{},[318],{"type":47,"value":319},"Component documentation links",{"type":47,"value":321}," → follow them for usage and guidelines.",{"type":41,"tag":184,"props":323,"children":324},{},[325,330],{"type":41,"tag":56,"props":326,"children":327},{},[328],{"type":47,"value":329},"Design annotations",{"type":47,"value":331}," → follow any designer notes or constraints.",{"type":41,"tag":184,"props":333,"children":334},{},[335,340],{"type":41,"tag":56,"props":336,"children":337},{},[338],{"type":47,"value":339},"Design tokens (CSS variables)",{"type":47,"value":341}," → map them to the project's token system.",{"type":41,"tag":184,"props":343,"children":344},{},[345,350],{"type":41,"tag":56,"props":346,"children":347},{},[348],{"type":47,"value":349},"Raw hex \u002F absolute positioning",{"type":47,"value":351}," → loosely structured; lean on the screenshot for intent.",{"type":41,"tag":200,"props":353,"children":355},{"id":354},"_5-reproduce-images-and-icons-faithfully",[356],{"type":47,"value":357},"5. Reproduce images and icons faithfully",{"type":41,"tag":50,"props":359,"children":360},{},[361,363,369,371,377,379,385],{"type":47,"value":362},"Images and icons come back as ",{"type":41,"tag":64,"props":364,"children":366},{"className":365},[],[367],{"type":47,"value":368},"\u003Cimg>",{"type":47,"value":370}," elements whose ",{"type":41,"tag":64,"props":372,"children":374},{"className":373},[],[375],{"type":47,"value":376},"src",{"type":47,"value":378}," is a remote asset URL (",{"type":41,"tag":64,"props":380,"children":382},{"className":381},[],[383],{"type":47,"value":384},"https:\u002F\u002F...\u002Fapi\u002Fmcp\u002Fasset\u002F...",{"type":47,"value":386},"). Apply these rules as you write the code:",{"type":41,"tag":180,"props":388,"children":389},{},[390,415,439,449],{"type":41,"tag":184,"props":391,"children":392},{},[393,398,400,406,407,413],{"type":41,"tag":56,"props":394,"children":395},{},[396],{"type":47,"value":397},"Render every icon\u002Fimage from its exported asset.",{"type":47,"value":399}," Never hand-write or inline ",{"type":41,"tag":64,"props":401,"children":403},{"className":402},[],[404],{"type":47,"value":405},"\u003Csvg>",{"type":47,"value":108},{"type":41,"tag":64,"props":408,"children":410},{"className":409},[],[411],{"type":47,"value":412},"\u003Cpath>",{"type":47,"value":414},", never author your own icon file, never drop an icon or leave a placeholder — you don't have the real vector data, so anything you draw is wrong.",{"type":41,"tag":184,"props":416,"children":417},{},[418,423,425,430,432,437],{"type":41,"tag":56,"props":419,"children":420},{},[421],{"type":47,"value":422},"Sourcing:",{"type":47,"value":424}," the asset URL works directly as ",{"type":41,"tag":64,"props":426,"children":428},{"className":427},[],[429],{"type":47,"value":376},{"type":47,"value":431}," for an immediate render, but it ",{"type":41,"tag":56,"props":433,"children":434},{},[435],{"type":47,"value":436},"expires in ~7 days",{"type":47,"value":438}," — so for code you'll commit, download-and-commit the exact asset bytes, or wire a dynamic content image to the project's data source (API, CDN, or props). Never a file whose contents you authored.",{"type":41,"tag":184,"props":440,"children":441},{},[442,447],{"type":41,"tag":56,"props":443,"children":444},{},[445],{"type":47,"value":446},"Reuse a project icon component only if its glyph clearly matches",{"type":47,"value":448}," (a name match is not enough); otherwise use the exported asset.",{"type":41,"tag":184,"props":450,"children":451},{},[452,457,459,465,467,473,475,480,482,488,490,496],{"type":41,"tag":56,"props":453,"children":454},{},[455],{"type":47,"value":456},"Size explicitly:",{"type":47,"value":458}," a fixed-size container (icons are usually square, e.g. ",{"type":41,"tag":64,"props":460,"children":462},{"className":461},[],[463],{"type":47,"value":464},"size-[24px]",{"type":47,"value":466},", ",{"type":41,"tag":64,"props":468,"children":470},{"className":469},[],[471],{"type":47,"value":472},"overflow-clip",{"type":47,"value":474},") with BOTH width and height set, and size the leaf ",{"type":41,"tag":64,"props":476,"children":478},{"className":477},[],[479],{"type":47,"value":368},{"type":47,"value":481}," to fill it (",{"type":41,"tag":64,"props":483,"children":485},{"className":484},[],[486],{"type":47,"value":487},"100%",{"type":47,"value":489}," or fixed px) — never ",{"type":41,"tag":64,"props":491,"children":493},{"className":492},[],[494],{"type":47,"value":495},"auto",{"type":47,"value":497},", which blows the image up to its intrinsic size.",{"type":41,"tag":173,"props":499,"children":501},{"id":500},"error-recovery",[502],{"type":47,"value":503},"Error Recovery",{"type":41,"tag":180,"props":505,"children":506},{},[507,519,539,544],{"type":41,"tag":184,"props":508,"children":509},{},[510,512,517],{"type":47,"value":511},"On a ",{"type":41,"tag":64,"props":513,"children":515},{"className":514},[],[516],{"type":47,"value":69},{"type":47,"value":518}," error, STOP and read the message before retrying.",{"type":41,"tag":184,"props":520,"children":521},{},[522,524,530,532,538],{"type":47,"value":523},"If the design URL has no ",{"type":41,"tag":64,"props":525,"children":527},{"className":526},[],[528],{"type":47,"value":529},"node-id",{"type":47,"value":531}," (a file-only URL), ask the user for a node-specific URL — You MUST NOT guess or pass an empty ",{"type":41,"tag":64,"props":533,"children":535},{"className":534},[],[536],{"type":47,"value":537},"nodeId",{"type":47,"value":248},{"type":41,"tag":184,"props":540,"children":541},{},[542],{"type":47,"value":543},"On a timeout, retry against a smaller node or selection.",{"type":41,"tag":184,"props":545,"children":546},{},[547,549,554],{"type":47,"value":548},"You MUST NOT silently fall back to hand-writing the screen from the screenshot alone when ",{"type":41,"tag":64,"props":550,"children":552},{"className":551},[],[553],{"type":47,"value":69},{"type":47,"value":555}," can still provide context.",{"items":557,"total":719},[558,572,587,594,604,620,634,647,669,679,695,706],{"slug":559,"name":559,"fn":560,"description":561,"org":562,"tags":563,"stars":23,"repoUrl":24,"updatedAt":571},"figma-code-connect","map Figma components to code snippets","Creates and maintains Figma Code Connect template files that map Figma components to code snippets. Use when the user mentions Code Connect, Figma component mapping, design-to-code translation, or asks to create\u002Fupdate .figma.ts or .figma.js files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[564,565,568,569,570],{"name":21,"slug":22,"type":15},{"name":566,"slug":567,"type":15},"Design System","design-system",{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},"2026-07-31T05:52:30.590302",{"slug":573,"name":573,"fn":574,"description":575,"org":576,"tags":577,"stars":23,"repoUrl":24,"updatedAt":586},"figma-create-new-file","create new Figma or FigJam files","**MANDATORY prerequisite** — you MUST invoke this skill BEFORE every `create_new_file` tool call. NEVER call `create_new_file` directly without loading this skill first. Trigger whenever the user wants a new blank Figma file — a new design, FigJam, or Slides file — or when you need a fresh file before calling `use_figma`. Usage — \u002Ffigma-create-new-file [editorType] [fileName] (e.g. \u002Ffigma-create-new-file figjam My Whiteboard, \u002Ffigma-create-new-file slides Q3 Review)",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[578,579,580,583],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":581,"slug":582,"type":15},"Ideation","ideation",{"name":584,"slug":585,"type":15},"MCP","mcp","2026-04-06T18:11:46.464282",{"slug":4,"name":4,"fn":5,"description":6,"org":588,"tags":589,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[590,591,592,593],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":86,"name":86,"fn":595,"description":596,"org":597,"tags":598,"stars":23,"repoUrl":24,"updatedAt":603},"translate code layouts into Figma","Use this skill alongside figma-use when the task involves translating an application page, view, or multi-section layout into Figma. Triggers: 'write to Figma', 'create in Figma from code', 'push page to Figma', 'take this app\u002Fpage and build it in Figma', 'create a screen', 'build a landing page in Figma', 'update the Figma screen to match code', 'convert this modal\u002Fdialog\u002Fdrawer\u002Fpanel to Figma'. This is the preferred workflow skill whenever the user wants to build or update a full page, modal, dialog, drawer, sidebar, panel, or any composed multi-section view in Figma from code or a description. Discovers design system components, variables, and styles from Code Connect files, existing screens, and library search, then imports them and assembles views incrementally section-by-section using design system tokens instead of hardcoded values.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[599,600,601,602],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},"2026-04-06T18:11:48.952023",{"slug":605,"name":605,"fn":606,"description":607,"org":608,"tags":609,"stars":23,"repoUrl":24,"updatedAt":619},"figma-generate-diagram","generate flowcharts and architecture diagrams in Figma","MANDATORY prerequisite — load this skill BEFORE every `generate_diagram` tool call. NEVER call `generate_diagram` directly without loading this skill first. Trigger whenever the user asks to create, generate, draw, render, sketch, or build a diagram — flowchart, architecture diagram, sequence diagram, ERD or entity-relationship diagram, state diagram or state machine, gantt chart, or timeline. Also trigger when the user mentions Mermaid syntax or wants a system architecture, decision tree, dependency graph, API call flow, auth handshake, schema, or pipeline visualized in FigJam. Routes to type-specific guidance, sets universal Mermaid constraints, and tells you when to use a different diagram type or skip the tool entirely (mindmaps, pie charts, class diagrams, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[610,613,614,617,618],{"name":611,"slug":612,"type":15},"Architecture","architecture",{"name":21,"slug":22,"type":15},{"name":615,"slug":616,"type":15},"Diagrams","diagrams",{"name":9,"slug":8,"type":15},{"name":584,"slug":585,"type":15},"2026-04-28T05:43:52.834484",{"slug":621,"name":621,"fn":622,"description":623,"org":624,"tags":625,"stars":23,"repoUrl":24,"updatedAt":633},"figma-generate-library","build Figma design systems from code","Build or update a professional-grade design system in Figma from a codebase. Use when the user wants to create variables\u002Ftokens, build component libraries, create individual components with proper variant sets and variable bindings, set up theming (light\u002Fdark modes), document foundations, or reconcile gaps between code and Figma. Also use when the user asks to create or generate any component in Figma — even a single one — since components require proper variable foundations, variant states, and design token bindings to be production-quality. This skill teaches WHAT to build and in WHAT ORDER — it complements the `figma-use` skill which teaches HOW to call the Plugin API. Both skills should be loaded together.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[626,627,628,631,632],{"name":21,"slug":22,"type":15},{"name":566,"slug":567,"type":15},{"name":629,"slug":630,"type":15},"Documentation","documentation",{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},"2026-07-31T05:52:28.587088",{"slug":635,"name":635,"fn":636,"description":637,"org":638,"tags":639,"stars":23,"repoUrl":24,"updatedAt":646},"figma-implement-motion","implement Figma animations in production code","Translates Figma motion and animations into production-ready application code. Use when implementing animation\u002Fmotion from a Figma design — user mentions \"implement this motion\", \"add animation from Figma\", \"animate this component\", provides a Figma URL whose node is animated, or when `get_design_context` returns motion data or instructs you to call `get_motion_context`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[640,643,644,645],{"name":641,"slug":642,"type":15},"Animation","animation",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-06-25T07:13:13.645254",{"slug":648,"name":648,"fn":649,"description":650,"org":651,"tags":652,"stars":23,"repoUrl":24,"updatedAt":668},"figma-swiftui","translate between Figma designs and SwiftUI code","SwiftUI ↔ Figma translation. Use whenever the user mentions Swift, SwiftUI, iOS, iPhone, or iPad — in EITHER direction — translating a Figma design into SwiftUI (design → code), or pushing SwiftUI views \u002F screens \u002F tokens back into a Figma file (code → design). Triggers on phrases like 'implement this Figma design in SwiftUI', 'build this screen in Swift', 'push this SwiftUI view to Figma', 'mirror my Swift code in a Figma file', or whenever a Figma URL appears alongside `.swift` files \u002F an `.xcodeproj`. Routes to a direction-specific reference doc; loads alongside `figma-use` for the code → design path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[653,654,655,656,659,662,665],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":657,"slug":658,"type":15},"iOS","ios",{"name":660,"slug":661,"type":15},"Mobile","mobile",{"name":663,"slug":664,"type":15},"SwiftUI","swiftui",{"name":666,"slug":667,"type":15},"Visual Design","visual-design","2026-06-09T07:16:28.204756",{"slug":670,"name":670,"fn":671,"description":672,"org":673,"tags":674,"stars":23,"repoUrl":24,"updatedAt":678},"figma-use","initialize Figma tool usage","**MANDATORY prerequisite** — you MUST invoke this skill BEFORE every `use_figma` tool call. NEVER call `use_figma` directly without loading this skill first. Skipping it causes common, hard-to-debug failures. Trigger whenever the user wants to perform a write action or a unique read action that requires JavaScript execution in the Figma file context — e.g. create\u002Fedit\u002Fdelete nodes, set up variables or tokens, build components and variants, modify auto-layout or fills, bind variables to properties, or inspect file structure programmatically.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[675,676,677],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":584,"slug":585,"type":15},"2026-07-31T05:52:29.57808",{"slug":680,"name":680,"fn":681,"description":682,"org":683,"tags":684,"stars":23,"repoUrl":24,"updatedAt":694},"figma-use-figjam","use Figma tools in FigJam context","This skill helps agents use Figma's use_figma MCP tool in the FigJam context. Can be used alongside figma-use which has foundational context for using the use_figma tool.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[685,688,689,692,693],{"name":686,"slug":687,"type":15},"Collaboration","collaboration",{"name":21,"slug":22,"type":15},{"name":690,"slug":691,"type":15},"FigJam","figjam",{"name":9,"slug":8,"type":15},{"name":584,"slug":585,"type":15},"2026-04-28T05:43:51.600727",{"slug":696,"name":696,"fn":697,"description":698,"org":699,"tags":700,"stars":23,"repoUrl":24,"updatedAt":705},"figma-use-motion","animate Figma nodes with motion tools","Motion \u002F animation context for the `use_figma` MCP tool — animating Figma nodes via manual keyframes, animation styles, easing, and timeline duration. Load alongside figma-use whenever a task involves adding, editing, or inspecting animation on a node.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[701,702,703,704],{"name":641,"slug":642,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":584,"slug":585,"type":15},"2026-06-25T07:13:12.398176",{"slug":707,"name":707,"fn":708,"description":709,"org":710,"tags":711,"stars":23,"repoUrl":24,"updatedAt":718},"figma-use-slides","use Figma tools in Slides context","This skill helps agents use Figma's use_figma MCP tool in the Slides context. Can be used alongside figma-use which has foundational context for using the use_figma tool.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[712,713,714,715],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":584,"slug":585,"type":15},{"name":716,"slug":717,"type":15},"Presentations","presentations","2026-05-14T06:09:42.171824",14,{"items":721,"total":719},[722,730,737,744,751,759,767],{"slug":559,"name":559,"fn":560,"description":561,"org":723,"tags":724,"stars":23,"repoUrl":24,"updatedAt":571},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[725,726,727,728,729],{"name":21,"slug":22,"type":15},{"name":566,"slug":567,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":573,"name":573,"fn":574,"description":575,"org":731,"tags":732,"stars":23,"repoUrl":24,"updatedAt":586},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[733,734,735,736],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":581,"slug":582,"type":15},{"name":584,"slug":585,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":738,"tags":739,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[740,741,742,743],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":86,"name":86,"fn":595,"description":596,"org":745,"tags":746,"stars":23,"repoUrl":24,"updatedAt":603},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[747,748,749,750],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":605,"name":605,"fn":606,"description":607,"org":752,"tags":753,"stars":23,"repoUrl":24,"updatedAt":619},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[754,755,756,757,758],{"name":611,"slug":612,"type":15},{"name":21,"slug":22,"type":15},{"name":615,"slug":616,"type":15},{"name":9,"slug":8,"type":15},{"name":584,"slug":585,"type":15},{"slug":621,"name":621,"fn":622,"description":623,"org":760,"tags":761,"stars":23,"repoUrl":24,"updatedAt":633},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[762,763,764,765,766],{"name":21,"slug":22,"type":15},{"name":566,"slug":567,"type":15},{"name":629,"slug":630,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"slug":635,"name":635,"fn":636,"description":637,"org":768,"tags":769,"stars":23,"repoUrl":24,"updatedAt":646},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[770,771,772,773],{"name":641,"slug":642,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15}]