[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-figma-figma-swiftui":3,"mdc--mpynd6-key":43,"related-org-figma-figma-swiftui":558,"related-repo-figma-figma-swiftui":714},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":32,"repoUrl":33,"updatedAt":34,"license":35,"forks":36,"topics":37,"repo":38,"sourceUrl":41,"mdContent":42},"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},"figma","Figma","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ffigma.png",[12,16,19,22,25,28,29],{"name":13,"slug":14,"type":15},"SwiftUI","swiftui","tag",{"name":17,"slug":18,"type":15},"iOS","ios",{"name":20,"slug":21,"type":15},"Mobile","mobile",{"name":23,"slug":24,"type":15},"Frontend","frontend",{"name":26,"slug":27,"type":15},"Visual Design","visual-design",{"name":9,"slug":8,"type":15},{"name":30,"slug":31,"type":15},"Design","design",1805,"https:\u002F\u002Fgithub.com\u002Ffigma\u002Fmcp-server-guide","2026-06-09T07:16:28.204756",null,164,[],{"repoUrl":33,"stars":32,"forks":36,"topics":39,"description":40},[],"A guide on how to use the Figma MCP server","https:\u002F\u002Fgithub.com\u002Ffigma\u002Fmcp-server-guide\u002Ftree\u002FHEAD\u002Fskills\u002Ffigma-swiftui","---\nname: figma-swiftui\ndescription: \"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.\"\ndisable-model-invocation: false\n---\n\n# Figma ↔ SwiftUI\n\nTranslation between Figma designs and SwiftUI code, both directions. This file is a router — actual guidance lives in the references below.\n\n## Pick the direction\n\n| Direction | Trigger | Reference |\n|---|---|---|\n| **Design → code** | User wants SwiftUI in their iOS project from a Figma file\u002Fframe | [references\u002Fdesign-to-code.md](references\u002Fdesign-to-code.md) |\n| **Code → design** | User wants to push SwiftUI views \u002F screens \u002F tokens into a Figma file | [references\u002Fcode-to-design.md](references\u002Fcode-to-design.md) |\n\nIf the request is ambiguous — a Figma URL and `.swift` files both present, no verb makes it clear — ask the user which direction before loading a reference.\n\n## Shared context (applies to both directions)\n\nThese points hold regardless of direction; the direction-specific references assume them.\n\n1. **`get_design_context` is the read tool for Figma.** Pass `clientLanguages: \"swift\"` and `clientFrameworks: \"swiftui\"` so the response is framed as Swift. URL → tool args: `figma.com\u002Fdesign\u002F:fileKey\u002F:fileName?node-id=:nodeId` → use `fileKey`, replace `-` with `:` in `nodeId`. For `figma.com\u002Fdesign\u002F:fileKey\u002Fbranch\u002F:branchKey\u002F:fileName`, use `branchKey` as `fileKey`.\n2. **The React+Tailwind in `get_design_context` output is a structural reference, not a literal source.** It approximates the visual. Never transliterate `position: absolute` \u002F pixel frames \u002F `mix-blend-mode` stacks into SwiftUI or into Figma — the screenshot is the source of truth in both directions.\n3. **iOS HIG semantic colors are tokens, not hex.** `var(--backgrounds\u002Fprimary, …)`, `var(--labels\u002Fsecondary, …)`, `var(--separators\u002Fnon-opaque, …)` etc. map to `Color(.systemBackground)`, `Color.secondary`, `Color(.separator)` in SwiftUI, and to variables in a semantic collection in Figma. Keep the mapping; drop the literal RGBA.\n4. **SF Symbols round-trip by name in both directions — never by codepoint.** Design → code: `get_design_context` substitutes Figma's SF Symbol glyph runs back into `\u003CSFSymbol>{Image(systemName: \"...\")}\u003C\u002FSFSymbol>` wrappers in the response. Use those names verbatim. Code → design: call `figma.util.getSfSymbolCharacter(name)` inside `use_figma` to convert a symbol name to the matching character — never look up codepoints by hand.\n5. **Recognize the underlying iOS pattern, not the literal node \u002F view name.** The same patterns recur in both directions: large title + back chevron + trailing action = `NavigationStack` chrome; bottom row of icon+label pairs = `TabView`; repeating same-height rows with leading\u002Ftrailing chrome = `List`. Match those system patterns rather than rebuilding them from primitives.\n6. **For code → design, `use_figma` is the API.** Always load [`figma-use`](..\u002Ffigma-use\u002FSKILL.md) before any `use_figma` call. If the task involves building a full screen, also load [`figma-generate-design`](..\u002Ffigma-generate-design\u002FSKILL.md); if it involves building components or a design system, also load [`figma-generate-library`](..\u002Ffigma-generate-library\u002FSKILL.md).\n\n## References\n\n| Doc | When to load |\n|---|---|\n| [references\u002Fdesign-to-code.md](references\u002Fdesign-to-code.md) | Translating a Figma design \u002F frame into SwiftUI |\n| [references\u002Fcode-to-design.md](references\u002Fcode-to-design.md) | Pushing SwiftUI views \u002F screens \u002F tokens into Figma |\n",{"data":44,"body":46},{"name":4,"description":6,"disable-model-invocation":45},false,{"type":47,"children":48},"root",[49,57,63,70,153,167,173,178,500,506],{"type":50,"tag":51,"props":52,"children":53},"element","h1",{"id":4},[54],{"type":55,"value":56},"text","Figma ↔ SwiftUI",{"type":50,"tag":58,"props":59,"children":60},"p",{},[61],{"type":55,"value":62},"Translation between Figma designs and SwiftUI code, both directions. This file is a router — actual guidance lives in the references below.",{"type":50,"tag":64,"props":65,"children":67},"h2",{"id":66},"pick-the-direction",[68],{"type":55,"value":69},"Pick the direction",{"type":50,"tag":71,"props":72,"children":73},"table",{},[74,98],{"type":50,"tag":75,"props":76,"children":77},"thead",{},[78],{"type":50,"tag":79,"props":80,"children":81},"tr",{},[82,88,93],{"type":50,"tag":83,"props":84,"children":85},"th",{},[86],{"type":55,"value":87},"Direction",{"type":50,"tag":83,"props":89,"children":90},{},[91],{"type":55,"value":92},"Trigger",{"type":50,"tag":83,"props":94,"children":95},{},[96],{"type":55,"value":97},"Reference",{"type":50,"tag":99,"props":100,"children":101},"tbody",{},[102,129],{"type":50,"tag":79,"props":103,"children":104},{},[105,115,120],{"type":50,"tag":106,"props":107,"children":108},"td",{},[109],{"type":50,"tag":110,"props":111,"children":112},"strong",{},[113],{"type":55,"value":114},"Design → code",{"type":50,"tag":106,"props":116,"children":117},{},[118],{"type":55,"value":119},"User wants SwiftUI in their iOS project from a Figma file\u002Fframe",{"type":50,"tag":106,"props":121,"children":122},{},[123],{"type":50,"tag":124,"props":125,"children":127},"a",{"href":126},"references\u002Fdesign-to-code.md",[128],{"type":55,"value":126},{"type":50,"tag":79,"props":130,"children":131},{},[132,140,145],{"type":50,"tag":106,"props":133,"children":134},{},[135],{"type":50,"tag":110,"props":136,"children":137},{},[138],{"type":55,"value":139},"Code → design",{"type":50,"tag":106,"props":141,"children":142},{},[143],{"type":55,"value":144},"User wants to push SwiftUI views \u002F screens \u002F tokens into a Figma file",{"type":50,"tag":106,"props":146,"children":147},{},[148],{"type":50,"tag":124,"props":149,"children":151},{"href":150},"references\u002Fcode-to-design.md",[152],{"type":55,"value":150},{"type":50,"tag":58,"props":154,"children":155},{},[156,158,165],{"type":55,"value":157},"If the request is ambiguous — a Figma URL and ",{"type":50,"tag":159,"props":160,"children":162},"code",{"className":161},[],[163],{"type":55,"value":164},".swift",{"type":55,"value":166}," files both present, no verb makes it clear — ask the user which direction before loading a reference.",{"type":50,"tag":64,"props":168,"children":170},{"id":169},"shared-context-applies-to-both-directions",[171],{"type":55,"value":172},"Shared context (applies to both directions)",{"type":50,"tag":58,"props":174,"children":175},{},[176],{"type":55,"value":177},"These points hold regardless of direction; the direction-specific references assume them.",{"type":50,"tag":179,"props":180,"children":181},"ol",{},[182,278,311,366,407,441],{"type":50,"tag":183,"props":184,"children":185},"li",{},[186,197,199,205,207,213,215,221,223,229,231,237,239,245,247,253,255,261,263,269,271,276],{"type":50,"tag":110,"props":187,"children":188},{},[189,195],{"type":50,"tag":159,"props":190,"children":192},{"className":191},[],[193],{"type":55,"value":194},"get_design_context",{"type":55,"value":196}," is the read tool for Figma.",{"type":55,"value":198}," Pass ",{"type":50,"tag":159,"props":200,"children":202},{"className":201},[],[203],{"type":55,"value":204},"clientLanguages: \"swift\"",{"type":55,"value":206}," and ",{"type":50,"tag":159,"props":208,"children":210},{"className":209},[],[211],{"type":55,"value":212},"clientFrameworks: \"swiftui\"",{"type":55,"value":214}," so the response is framed as Swift. URL → tool args: ",{"type":50,"tag":159,"props":216,"children":218},{"className":217},[],[219],{"type":55,"value":220},"figma.com\u002Fdesign\u002F:fileKey\u002F:fileName?node-id=:nodeId",{"type":55,"value":222}," → use ",{"type":50,"tag":159,"props":224,"children":226},{"className":225},[],[227],{"type":55,"value":228},"fileKey",{"type":55,"value":230},", replace ",{"type":50,"tag":159,"props":232,"children":234},{"className":233},[],[235],{"type":55,"value":236},"-",{"type":55,"value":238}," with ",{"type":50,"tag":159,"props":240,"children":242},{"className":241},[],[243],{"type":55,"value":244},":",{"type":55,"value":246}," in ",{"type":50,"tag":159,"props":248,"children":250},{"className":249},[],[251],{"type":55,"value":252},"nodeId",{"type":55,"value":254},". For ",{"type":50,"tag":159,"props":256,"children":258},{"className":257},[],[259],{"type":55,"value":260},"figma.com\u002Fdesign\u002F:fileKey\u002Fbranch\u002F:branchKey\u002F:fileName",{"type":55,"value":262},", use ",{"type":50,"tag":159,"props":264,"children":266},{"className":265},[],[267],{"type":55,"value":268},"branchKey",{"type":55,"value":270}," as ",{"type":50,"tag":159,"props":272,"children":274},{"className":273},[],[275],{"type":55,"value":228},{"type":55,"value":277},".",{"type":50,"tag":183,"props":279,"children":280},{},[281,293,295,301,303,309],{"type":50,"tag":110,"props":282,"children":283},{},[284,286,291],{"type":55,"value":285},"The React+Tailwind in ",{"type":50,"tag":159,"props":287,"children":289},{"className":288},[],[290],{"type":55,"value":194},{"type":55,"value":292}," output is a structural reference, not a literal source.",{"type":55,"value":294}," It approximates the visual. Never transliterate ",{"type":50,"tag":159,"props":296,"children":298},{"className":297},[],[299],{"type":55,"value":300},"position: absolute",{"type":55,"value":302}," \u002F pixel frames \u002F ",{"type":50,"tag":159,"props":304,"children":306},{"className":305},[],[307],{"type":55,"value":308},"mix-blend-mode",{"type":55,"value":310}," stacks into SwiftUI or into Figma — the screenshot is the source of truth in both directions.",{"type":50,"tag":183,"props":312,"children":313},{},[314,319,321,327,329,335,336,342,344,350,351,357,358,364],{"type":50,"tag":110,"props":315,"children":316},{},[317],{"type":55,"value":318},"iOS HIG semantic colors are tokens, not hex.",{"type":55,"value":320}," ",{"type":50,"tag":159,"props":322,"children":324},{"className":323},[],[325],{"type":55,"value":326},"var(--backgrounds\u002Fprimary, …)",{"type":55,"value":328},", ",{"type":50,"tag":159,"props":330,"children":332},{"className":331},[],[333],{"type":55,"value":334},"var(--labels\u002Fsecondary, …)",{"type":55,"value":328},{"type":50,"tag":159,"props":337,"children":339},{"className":338},[],[340],{"type":55,"value":341},"var(--separators\u002Fnon-opaque, …)",{"type":55,"value":343}," etc. map to ",{"type":50,"tag":159,"props":345,"children":347},{"className":346},[],[348],{"type":55,"value":349},"Color(.systemBackground)",{"type":55,"value":328},{"type":50,"tag":159,"props":352,"children":354},{"className":353},[],[355],{"type":55,"value":356},"Color.secondary",{"type":55,"value":328},{"type":50,"tag":159,"props":359,"children":361},{"className":360},[],[362],{"type":55,"value":363},"Color(.separator)",{"type":55,"value":365}," in SwiftUI, and to variables in a semantic collection in Figma. Keep the mapping; drop the literal RGBA.",{"type":50,"tag":183,"props":367,"children":368},{},[369,374,376,381,383,389,391,397,399,405],{"type":50,"tag":110,"props":370,"children":371},{},[372],{"type":55,"value":373},"SF Symbols round-trip by name in both directions — never by codepoint.",{"type":55,"value":375}," Design → code: ",{"type":50,"tag":159,"props":377,"children":379},{"className":378},[],[380],{"type":55,"value":194},{"type":55,"value":382}," substitutes Figma's SF Symbol glyph runs back into ",{"type":50,"tag":159,"props":384,"children":386},{"className":385},[],[387],{"type":55,"value":388},"\u003CSFSymbol>{Image(systemName: \"...\")}\u003C\u002FSFSymbol>",{"type":55,"value":390}," wrappers in the response. Use those names verbatim. Code → design: call ",{"type":50,"tag":159,"props":392,"children":394},{"className":393},[],[395],{"type":55,"value":396},"figma.util.getSfSymbolCharacter(name)",{"type":55,"value":398}," inside ",{"type":50,"tag":159,"props":400,"children":402},{"className":401},[],[403],{"type":55,"value":404},"use_figma",{"type":55,"value":406}," to convert a symbol name to the matching character — never look up codepoints by hand.",{"type":50,"tag":183,"props":408,"children":409},{},[410,415,417,423,425,431,433,439],{"type":50,"tag":110,"props":411,"children":412},{},[413],{"type":55,"value":414},"Recognize the underlying iOS pattern, not the literal node \u002F view name.",{"type":55,"value":416}," The same patterns recur in both directions: large title + back chevron + trailing action = ",{"type":50,"tag":159,"props":418,"children":420},{"className":419},[],[421],{"type":55,"value":422},"NavigationStack",{"type":55,"value":424}," chrome; bottom row of icon+label pairs = ",{"type":50,"tag":159,"props":426,"children":428},{"className":427},[],[429],{"type":55,"value":430},"TabView",{"type":55,"value":432},"; repeating same-height rows with leading\u002Ftrailing chrome = ",{"type":50,"tag":159,"props":434,"children":436},{"className":435},[],[437],{"type":55,"value":438},"List",{"type":55,"value":440},". Match those system patterns rather than rebuilding them from primitives.",{"type":50,"tag":183,"props":442,"children":443},{},[444,456,458,468,470,475,477,487,489,499],{"type":50,"tag":110,"props":445,"children":446},{},[447,449,454],{"type":55,"value":448},"For code → design, ",{"type":50,"tag":159,"props":450,"children":452},{"className":451},[],[453],{"type":55,"value":404},{"type":55,"value":455}," is the API.",{"type":55,"value":457}," Always load ",{"type":50,"tag":124,"props":459,"children":461},{"href":460},"..\u002Ffigma-use\u002FSKILL.md",[462],{"type":50,"tag":159,"props":463,"children":465},{"className":464},[],[466],{"type":55,"value":467},"figma-use",{"type":55,"value":469}," before any ",{"type":50,"tag":159,"props":471,"children":473},{"className":472},[],[474],{"type":55,"value":404},{"type":55,"value":476}," call. If the task involves building a full screen, also load ",{"type":50,"tag":124,"props":478,"children":480},{"href":479},"..\u002Ffigma-generate-design\u002FSKILL.md",[481],{"type":50,"tag":159,"props":482,"children":484},{"className":483},[],[485],{"type":55,"value":486},"figma-generate-design",{"type":55,"value":488},"; if it involves building components or a design system, also load ",{"type":50,"tag":124,"props":490,"children":492},{"href":491},"..\u002Ffigma-generate-library\u002FSKILL.md",[493],{"type":50,"tag":159,"props":494,"children":496},{"className":495},[],[497],{"type":55,"value":498},"figma-generate-library",{"type":55,"value":277},{"type":50,"tag":64,"props":501,"children":503},{"id":502},"references",[504],{"type":55,"value":505},"References",{"type":50,"tag":71,"props":507,"children":508},{},[509,525],{"type":50,"tag":75,"props":510,"children":511},{},[512],{"type":50,"tag":79,"props":513,"children":514},{},[515,520],{"type":50,"tag":83,"props":516,"children":517},{},[518],{"type":55,"value":519},"Doc",{"type":50,"tag":83,"props":521,"children":522},{},[523],{"type":55,"value":524},"When to load",{"type":50,"tag":99,"props":526,"children":527},{},[528,543],{"type":50,"tag":79,"props":529,"children":530},{},[531,538],{"type":50,"tag":106,"props":532,"children":533},{},[534],{"type":50,"tag":124,"props":535,"children":536},{"href":126},[537],{"type":55,"value":126},{"type":50,"tag":106,"props":539,"children":540},{},[541],{"type":55,"value":542},"Translating a Figma design \u002F frame into SwiftUI",{"type":50,"tag":79,"props":544,"children":545},{},[546,553],{"type":50,"tag":106,"props":547,"children":548},{},[549],{"type":50,"tag":124,"props":550,"children":551},{"href":150},[552],{"type":55,"value":150},{"type":50,"tag":106,"props":554,"children":555},{},[556],{"type":55,"value":557},"Pushing SwiftUI views \u002F screens \u002F tokens into Figma",{"items":559,"total":713},[560,576,591,602,612,628,641,654,664,673,689,700],{"slug":561,"name":561,"fn":562,"description":563,"org":564,"tags":565,"stars":32,"repoUrl":33,"updatedAt":575},"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},[566,567,570,571,572],{"name":30,"slug":31,"type":15},{"name":568,"slug":569,"type":15},"Design System","design-system",{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},{"name":573,"slug":574,"type":15},"UI Components","ui-components","2026-07-31T05:52:30.590302",{"slug":577,"name":577,"fn":578,"description":579,"org":580,"tags":581,"stars":32,"repoUrl":33,"updatedAt":590},"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},[582,583,584,587],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":585,"slug":586,"type":15},"Ideation","ideation",{"name":588,"slug":589,"type":15},"MCP","mcp","2026-04-06T18:11:46.464282",{"slug":592,"name":592,"fn":593,"description":594,"org":595,"tags":596,"stars":32,"repoUrl":33,"updatedAt":601},"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},[597,598,599,600],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},{"name":573,"slug":574,"type":15},"2026-07-10T06:43:51.122606",{"slug":486,"name":486,"fn":603,"description":604,"org":605,"tags":606,"stars":32,"repoUrl":33,"updatedAt":611},"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},[607,608,609,610],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},{"name":573,"slug":574,"type":15},"2026-04-06T18:11:48.952023",{"slug":613,"name":613,"fn":614,"description":615,"org":616,"tags":617,"stars":32,"repoUrl":33,"updatedAt":627},"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},[618,621,622,625,626],{"name":619,"slug":620,"type":15},"Architecture","architecture",{"name":30,"slug":31,"type":15},{"name":623,"slug":624,"type":15},"Diagrams","diagrams",{"name":9,"slug":8,"type":15},{"name":588,"slug":589,"type":15},"2026-04-28T05:43:52.834484",{"slug":498,"name":498,"fn":629,"description":630,"org":631,"tags":632,"stars":32,"repoUrl":33,"updatedAt":640},"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},[633,634,635,638,639],{"name":30,"slug":31,"type":15},{"name":568,"slug":569,"type":15},{"name":636,"slug":637,"type":15},"Documentation","documentation",{"name":9,"slug":8,"type":15},{"name":573,"slug":574,"type":15},"2026-07-31T05:52:28.587088",{"slug":642,"name":642,"fn":643,"description":644,"org":645,"tags":646,"stars":32,"repoUrl":33,"updatedAt":653},"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},[647,650,651,652],{"name":648,"slug":649,"type":15},"Animation","animation",{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},"2026-06-25T07:13:13.645254",{"slug":4,"name":4,"fn":5,"description":6,"org":655,"tags":656,"stars":32,"repoUrl":33,"updatedAt":34},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[657,658,659,660,661,662,663],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":26,"slug":27,"type":15},{"slug":467,"name":467,"fn":665,"description":666,"org":667,"tags":668,"stars":32,"repoUrl":33,"updatedAt":672},"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},[669,670,671],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":588,"slug":589,"type":15},"2026-07-31T05:52:29.57808",{"slug":674,"name":674,"fn":675,"description":676,"org":677,"tags":678,"stars":32,"repoUrl":33,"updatedAt":688},"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},[679,682,683,686,687],{"name":680,"slug":681,"type":15},"Collaboration","collaboration",{"name":30,"slug":31,"type":15},{"name":684,"slug":685,"type":15},"FigJam","figjam",{"name":9,"slug":8,"type":15},{"name":588,"slug":589,"type":15},"2026-04-28T05:43:51.600727",{"slug":690,"name":690,"fn":691,"description":692,"org":693,"tags":694,"stars":32,"repoUrl":33,"updatedAt":699},"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},[695,696,697,698],{"name":648,"slug":649,"type":15},{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":588,"slug":589,"type":15},"2026-06-25T07:13:12.398176",{"slug":701,"name":701,"fn":702,"description":703,"org":704,"tags":705,"stars":32,"repoUrl":33,"updatedAt":712},"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},[706,707,708,709],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":588,"slug":589,"type":15},{"name":710,"slug":711,"type":15},"Presentations","presentations","2026-05-14T06:09:42.171824",14,{"items":715,"total":713},[716,724,731,738,745,753,761],{"slug":561,"name":561,"fn":562,"description":563,"org":717,"tags":718,"stars":32,"repoUrl":33,"updatedAt":575},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[719,720,721,722,723],{"name":30,"slug":31,"type":15},{"name":568,"slug":569,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},{"name":573,"slug":574,"type":15},{"slug":577,"name":577,"fn":578,"description":579,"org":725,"tags":726,"stars":32,"repoUrl":33,"updatedAt":590},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[727,728,729,730],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":585,"slug":586,"type":15},{"name":588,"slug":589,"type":15},{"slug":592,"name":592,"fn":593,"description":594,"org":732,"tags":733,"stars":32,"repoUrl":33,"updatedAt":601},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[734,735,736,737],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},{"name":573,"slug":574,"type":15},{"slug":486,"name":486,"fn":603,"description":604,"org":739,"tags":740,"stars":32,"repoUrl":33,"updatedAt":611},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[741,742,743,744],{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15},{"name":573,"slug":574,"type":15},{"slug":613,"name":613,"fn":614,"description":615,"org":746,"tags":747,"stars":32,"repoUrl":33,"updatedAt":627},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[748,749,750,751,752],{"name":619,"slug":620,"type":15},{"name":30,"slug":31,"type":15},{"name":623,"slug":624,"type":15},{"name":9,"slug":8,"type":15},{"name":588,"slug":589,"type":15},{"slug":498,"name":498,"fn":629,"description":630,"org":754,"tags":755,"stars":32,"repoUrl":33,"updatedAt":640},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[756,757,758,759,760],{"name":30,"slug":31,"type":15},{"name":568,"slug":569,"type":15},{"name":636,"slug":637,"type":15},{"name":9,"slug":8,"type":15},{"name":573,"slug":574,"type":15},{"slug":642,"name":642,"fn":643,"description":644,"org":762,"tags":763,"stars":32,"repoUrl":33,"updatedAt":653},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[764,765,766,767],{"name":648,"slug":649,"type":15},{"name":30,"slug":31,"type":15},{"name":9,"slug":8,"type":15},{"name":23,"slug":24,"type":15}]