[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-figma-figma-create-new-file":3,"mdc-y7i7er-key":34,"related-org-figma-figma-create-new-file":874,"related-repo-figma-figma-create-new-file":1037},{"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-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},"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},"Ideation","ideation","tag",{"name":17,"slug":18,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Design","design",1805,"https:\u002F\u002Fgithub.com\u002Ffigma\u002Fmcp-server-guide","2026-04-06T18:11:46.464282",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-create-new-file","---\nname: figma-create-new-file\ndescription: \"**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)\"\ndisable-model-invocation: false\n---\n\n# create_new_file — Create a New Figma File\n\n**MANDATORY: load this skill before every `create_new_file` tool call.** It encodes the plan-resolution decision tree, the editor-type contract, and the post-creation handoff to `use_figma`.\n\nUse the `create_new_file` MCP tool to create a new blank Figma file in the user's drafts folder. This is typically used before `use_figma` when you need a fresh file to work with.\n\n## Skill Arguments\n\nThis skill accepts optional arguments: `\u002Ffigma-create-new-file [editorType] [fileName]`\n\n- **editorType**: `design` (default), `figjam`, or `slides`\n- **fileName**: Name for the new file (defaults to \"Untitled\")\n\nExamples:\n- `\u002Ffigma-create-new-file` — creates a design file named \"Untitled\"\n- `\u002Ffigma-create-new-file figjam My Whiteboard` — creates a FigJam file named \"My Whiteboard\"\n- `\u002Ffigma-create-new-file design My New Design` — creates a design file named \"My New Design\"\n- `\u002Ffigma-create-new-file slides Q3 Review` — creates a Slides presentation named \"Q3 Review\"\n\nParse the arguments from the skill invocation. If editorType is not provided, default to `\"design\"`. If fileName is not provided, default to `\"Untitled\"`.\n\n## Workflow\n\n### Step 1: Resolve the planKey\n\nThe `create_new_file` tool requires a `planKey` parameter. Follow this decision tree:\n\n1. **User already provided a planKey** (e.g. from a previous `whoami` call or in their prompt) → use it directly, skip to Step 2.\n\n2. **No planKey available** → call the `whoami` tool. The response contains a `plans` array. Each plan has a `key`, `name`, `seat`, and `tier`.\n\n   - **Single plan**: use its `key` field automatically.\n   - **Multiple plans**: ask the user which team or organization they want to create the file in, then use the corresponding plan's `key`.\n\n### Step 2: Call create_new_file\n\nCall the `create_new_file` tool with:\n\n| Parameter    | Required | Description |\n|-------------|----------|-------------|\n| `planKey`   | Yes      | The plan key from Step 1 |\n| `fileName`  | Yes      | Name for the new file |\n| `editorType`| Yes      | `\"design\"`, `\"figjam\"`, or `\"slides\"` |\n\nExample:\n```json\n{\n  \"planKey\": \"team:123456\",\n  \"fileName\": \"My New Design\",\n  \"editorType\": \"design\"\n}\n```\n\n### Step 3: Use the result\n\nThe tool returns:\n- `file_key` — the key of the newly created file\n- `file_url` — a direct URL to open the file in Figma\n\nUse the `file_key` for subsequent tool calls like `use_figma`.\n\n## Important Notes\n\n- The file is created in the user's **drafts folder** for the selected plan.\n- Supported editor types are `\"design\"`, `\"figjam\"`, and `\"slides\"`.\n- If `use_figma` is your next step, load the `figma-use` skill before calling it.\n\n## Editor-specific notes\n\n### Slides — newly created files have an empty grid\n\nA `slides` file produced by this tool starts with **zero rows and zero slides** — `figma.getSlideGrid()` returns `[]`, not a default first slide. The page's only child is the `SLIDE_GRID` node itself, which is empty until you create content. The first call to `figma.createSlide()` implicitly creates row 0 and inserts the new slide there.\n\nIf your follow-up `use_figma` script assumes at least one slide exists (e.g. to read theme tokens off it), guard for the empty case or call `createSlide()` first. See [figma-use-slides → slide-grid](..\u002Ffigma-use-slides\u002Freferences\u002Fslide-grid.md) for full details.\n",{"data":35,"body":37},{"name":4,"description":6,"disable-model-invocation":36},false,{"type":38,"children":39},"root",[40,49,78,97,104,115,161,166,213,233,239,246,266,379,385,397,508,513,659,665,670,695,712,718,776,782,788,839,868],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"create_new_file-create-a-new-figma-file",[46],{"type":47,"value":48},"text","create_new_file — Create a New Figma File",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53,68,70,76],{"type":41,"tag":54,"props":55,"children":56},"strong",{},[57,59,66],{"type":47,"value":58},"MANDATORY: load this skill before every ",{"type":41,"tag":60,"props":61,"children":63},"code",{"className":62},[],[64],{"type":47,"value":65},"create_new_file",{"type":47,"value":67}," tool call.",{"type":47,"value":69}," It encodes the plan-resolution decision tree, the editor-type contract, and the post-creation handoff to ",{"type":41,"tag":60,"props":71,"children":73},{"className":72},[],[74],{"type":47,"value":75},"use_figma",{"type":47,"value":77},".",{"type":41,"tag":50,"props":79,"children":80},{},[81,83,88,90,95],{"type":47,"value":82},"Use the ",{"type":41,"tag":60,"props":84,"children":86},{"className":85},[],[87],{"type":47,"value":65},{"type":47,"value":89}," MCP tool to create a new blank Figma file in the user's drafts folder. This is typically used before ",{"type":41,"tag":60,"props":91,"children":93},{"className":92},[],[94],{"type":47,"value":75},{"type":47,"value":96}," when you need a fresh file to work with.",{"type":41,"tag":98,"props":99,"children":101},"h2",{"id":100},"skill-arguments",[102],{"type":47,"value":103},"Skill Arguments",{"type":41,"tag":50,"props":105,"children":106},{},[107,109],{"type":47,"value":108},"This skill accepts optional arguments: ",{"type":41,"tag":60,"props":110,"children":112},{"className":111},[],[113],{"type":47,"value":114},"\u002Ffigma-create-new-file [editorType] [fileName]",{"type":41,"tag":116,"props":117,"children":118},"ul",{},[119,151],{"type":41,"tag":120,"props":121,"children":122},"li",{},[123,128,130,135,137,143,145],{"type":41,"tag":54,"props":124,"children":125},{},[126],{"type":47,"value":127},"editorType",{"type":47,"value":129},": ",{"type":41,"tag":60,"props":131,"children":133},{"className":132},[],[134],{"type":47,"value":22},{"type":47,"value":136}," (default), ",{"type":41,"tag":60,"props":138,"children":140},{"className":139},[],[141],{"type":47,"value":142},"figjam",{"type":47,"value":144},", or ",{"type":41,"tag":60,"props":146,"children":148},{"className":147},[],[149],{"type":47,"value":150},"slides",{"type":41,"tag":120,"props":152,"children":153},{},[154,159],{"type":41,"tag":54,"props":155,"children":156},{},[157],{"type":47,"value":158},"fileName",{"type":47,"value":160},": Name for the new file (defaults to \"Untitled\")",{"type":41,"tag":50,"props":162,"children":163},{},[164],{"type":47,"value":165},"Examples:",{"type":41,"tag":116,"props":167,"children":168},{},[169,180,191,202],{"type":41,"tag":120,"props":170,"children":171},{},[172,178],{"type":41,"tag":60,"props":173,"children":175},{"className":174},[],[176],{"type":47,"value":177},"\u002Ffigma-create-new-file",{"type":47,"value":179}," — creates a design file named \"Untitled\"",{"type":41,"tag":120,"props":181,"children":182},{},[183,189],{"type":41,"tag":60,"props":184,"children":186},{"className":185},[],[187],{"type":47,"value":188},"\u002Ffigma-create-new-file figjam My Whiteboard",{"type":47,"value":190}," — creates a FigJam file named \"My Whiteboard\"",{"type":41,"tag":120,"props":192,"children":193},{},[194,200],{"type":41,"tag":60,"props":195,"children":197},{"className":196},[],[198],{"type":47,"value":199},"\u002Ffigma-create-new-file design My New Design",{"type":47,"value":201}," — creates a design file named \"My New Design\"",{"type":41,"tag":120,"props":203,"children":204},{},[205,211],{"type":41,"tag":60,"props":206,"children":208},{"className":207},[],[209],{"type":47,"value":210},"\u002Ffigma-create-new-file slides Q3 Review",{"type":47,"value":212}," — creates a Slides presentation named \"Q3 Review\"",{"type":41,"tag":50,"props":214,"children":215},{},[216,218,224,226,232],{"type":47,"value":217},"Parse the arguments from the skill invocation. If editorType is not provided, default to ",{"type":41,"tag":60,"props":219,"children":221},{"className":220},[],[222],{"type":47,"value":223},"\"design\"",{"type":47,"value":225},". If fileName is not provided, default to ",{"type":41,"tag":60,"props":227,"children":229},{"className":228},[],[230],{"type":47,"value":231},"\"Untitled\"",{"type":47,"value":77},{"type":41,"tag":98,"props":234,"children":236},{"id":235},"workflow",[237],{"type":47,"value":238},"Workflow",{"type":41,"tag":240,"props":241,"children":243},"h3",{"id":242},"step-1-resolve-the-plankey",[244],{"type":47,"value":245},"Step 1: Resolve the planKey",{"type":41,"tag":50,"props":247,"children":248},{},[249,251,256,258,264],{"type":47,"value":250},"The ",{"type":41,"tag":60,"props":252,"children":254},{"className":253},[],[255],{"type":47,"value":65},{"type":47,"value":257}," tool requires a ",{"type":41,"tag":60,"props":259,"children":261},{"className":260},[],[262],{"type":47,"value":263},"planKey",{"type":47,"value":265}," parameter. Follow this decision tree:",{"type":41,"tag":267,"props":268,"children":269},"ol",{},[270,288],{"type":41,"tag":120,"props":271,"children":272},{},[273,278,280,286],{"type":41,"tag":54,"props":274,"children":275},{},[276],{"type":47,"value":277},"User already provided a planKey",{"type":47,"value":279}," (e.g. from a previous ",{"type":41,"tag":60,"props":281,"children":283},{"className":282},[],[284],{"type":47,"value":285},"whoami",{"type":47,"value":287}," call or in their prompt) → use it directly, skip to Step 2.",{"type":41,"tag":120,"props":289,"children":290},{},[291,296,298,303,305,311,313,319,321,327,328,334,336,342,343],{"type":41,"tag":54,"props":292,"children":293},{},[294],{"type":47,"value":295},"No planKey available",{"type":47,"value":297}," → call the ",{"type":41,"tag":60,"props":299,"children":301},{"className":300},[],[302],{"type":47,"value":285},{"type":47,"value":304}," tool. The response contains a ",{"type":41,"tag":60,"props":306,"children":308},{"className":307},[],[309],{"type":47,"value":310},"plans",{"type":47,"value":312}," array. Each plan has a ",{"type":41,"tag":60,"props":314,"children":316},{"className":315},[],[317],{"type":47,"value":318},"key",{"type":47,"value":320},", ",{"type":41,"tag":60,"props":322,"children":324},{"className":323},[],[325],{"type":47,"value":326},"name",{"type":47,"value":320},{"type":41,"tag":60,"props":329,"children":331},{"className":330},[],[332],{"type":47,"value":333},"seat",{"type":47,"value":335},", and ",{"type":41,"tag":60,"props":337,"children":339},{"className":338},[],[340],{"type":47,"value":341},"tier",{"type":47,"value":77},{"type":41,"tag":116,"props":344,"children":345},{},[346,363],{"type":41,"tag":120,"props":347,"children":348},{},[349,354,356,361],{"type":41,"tag":54,"props":350,"children":351},{},[352],{"type":47,"value":353},"Single plan",{"type":47,"value":355},": use its ",{"type":41,"tag":60,"props":357,"children":359},{"className":358},[],[360],{"type":47,"value":318},{"type":47,"value":362}," field automatically.",{"type":41,"tag":120,"props":364,"children":365},{},[366,371,373,378],{"type":41,"tag":54,"props":367,"children":368},{},[369],{"type":47,"value":370},"Multiple plans",{"type":47,"value":372},": ask the user which team or organization they want to create the file in, then use the corresponding plan's ",{"type":41,"tag":60,"props":374,"children":376},{"className":375},[],[377],{"type":47,"value":318},{"type":47,"value":77},{"type":41,"tag":240,"props":380,"children":382},{"id":381},"step-2-call-create_new_file",[383],{"type":47,"value":384},"Step 2: Call create_new_file",{"type":41,"tag":50,"props":386,"children":387},{},[388,390,395],{"type":47,"value":389},"Call the ",{"type":41,"tag":60,"props":391,"children":393},{"className":392},[],[394],{"type":47,"value":65},{"type":47,"value":396}," tool with:",{"type":41,"tag":398,"props":399,"children":400},"table",{},[401,425],{"type":41,"tag":402,"props":403,"children":404},"thead",{},[405],{"type":41,"tag":406,"props":407,"children":408},"tr",{},[409,415,420],{"type":41,"tag":410,"props":411,"children":412},"th",{},[413],{"type":47,"value":414},"Parameter",{"type":41,"tag":410,"props":416,"children":417},{},[418],{"type":47,"value":419},"Required",{"type":41,"tag":410,"props":421,"children":422},{},[423],{"type":47,"value":424},"Description",{"type":41,"tag":426,"props":427,"children":428},"tbody",{},[429,451,471],{"type":41,"tag":406,"props":430,"children":431},{},[432,441,446],{"type":41,"tag":433,"props":434,"children":435},"td",{},[436],{"type":41,"tag":60,"props":437,"children":439},{"className":438},[],[440],{"type":47,"value":263},{"type":41,"tag":433,"props":442,"children":443},{},[444],{"type":47,"value":445},"Yes",{"type":41,"tag":433,"props":447,"children":448},{},[449],{"type":47,"value":450},"The plan key from Step 1",{"type":41,"tag":406,"props":452,"children":453},{},[454,462,466],{"type":41,"tag":433,"props":455,"children":456},{},[457],{"type":41,"tag":60,"props":458,"children":460},{"className":459},[],[461],{"type":47,"value":158},{"type":41,"tag":433,"props":463,"children":464},{},[465],{"type":47,"value":445},{"type":41,"tag":433,"props":467,"children":468},{},[469],{"type":47,"value":470},"Name for the new file",{"type":41,"tag":406,"props":472,"children":473},{},[474,482,486],{"type":41,"tag":433,"props":475,"children":476},{},[477],{"type":41,"tag":60,"props":478,"children":480},{"className":479},[],[481],{"type":47,"value":127},{"type":41,"tag":433,"props":483,"children":484},{},[485],{"type":47,"value":445},{"type":41,"tag":433,"props":487,"children":488},{},[489,494,495,501,502],{"type":41,"tag":60,"props":490,"children":492},{"className":491},[],[493],{"type":47,"value":223},{"type":47,"value":320},{"type":41,"tag":60,"props":496,"children":498},{"className":497},[],[499],{"type":47,"value":500},"\"figjam\"",{"type":47,"value":144},{"type":41,"tag":60,"props":503,"children":505},{"className":504},[],[506],{"type":47,"value":507},"\"slides\"",{"type":41,"tag":50,"props":509,"children":510},{},[511],{"type":47,"value":512},"Example:",{"type":41,"tag":514,"props":515,"children":520},"pre",{"className":516,"code":517,"language":518,"meta":519,"style":519},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"planKey\": \"team:123456\",\n  \"fileName\": \"My New Design\",\n  \"editorType\": \"design\"\n}\n","json","",[521],{"type":41,"tag":60,"props":522,"children":523},{"__ignoreMap":519},[524,536,580,617,650],{"type":41,"tag":525,"props":526,"children":529},"span",{"class":527,"line":528},"line",1,[530],{"type":41,"tag":525,"props":531,"children":533},{"style":532},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[534],{"type":47,"value":535},"{\n",{"type":41,"tag":525,"props":537,"children":539},{"class":527,"line":538},2,[540,545,550,555,560,565,571,575],{"type":41,"tag":525,"props":541,"children":542},{"style":532},[543],{"type":47,"value":544},"  \"",{"type":41,"tag":525,"props":546,"children":548},{"style":547},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[549],{"type":47,"value":263},{"type":41,"tag":525,"props":551,"children":552},{"style":532},[553],{"type":47,"value":554},"\"",{"type":41,"tag":525,"props":556,"children":557},{"style":532},[558],{"type":47,"value":559},":",{"type":41,"tag":525,"props":561,"children":562},{"style":532},[563],{"type":47,"value":564}," \"",{"type":41,"tag":525,"props":566,"children":568},{"style":567},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[569],{"type":47,"value":570},"team:123456",{"type":41,"tag":525,"props":572,"children":573},{"style":532},[574],{"type":47,"value":554},{"type":41,"tag":525,"props":576,"children":577},{"style":532},[578],{"type":47,"value":579},",\n",{"type":41,"tag":525,"props":581,"children":583},{"class":527,"line":582},3,[584,588,592,596,600,604,609,613],{"type":41,"tag":525,"props":585,"children":586},{"style":532},[587],{"type":47,"value":544},{"type":41,"tag":525,"props":589,"children":590},{"style":547},[591],{"type":47,"value":158},{"type":41,"tag":525,"props":593,"children":594},{"style":532},[595],{"type":47,"value":554},{"type":41,"tag":525,"props":597,"children":598},{"style":532},[599],{"type":47,"value":559},{"type":41,"tag":525,"props":601,"children":602},{"style":532},[603],{"type":47,"value":564},{"type":41,"tag":525,"props":605,"children":606},{"style":567},[607],{"type":47,"value":608},"My New Design",{"type":41,"tag":525,"props":610,"children":611},{"style":532},[612],{"type":47,"value":554},{"type":41,"tag":525,"props":614,"children":615},{"style":532},[616],{"type":47,"value":579},{"type":41,"tag":525,"props":618,"children":620},{"class":527,"line":619},4,[621,625,629,633,637,641,645],{"type":41,"tag":525,"props":622,"children":623},{"style":532},[624],{"type":47,"value":544},{"type":41,"tag":525,"props":626,"children":627},{"style":547},[628],{"type":47,"value":127},{"type":41,"tag":525,"props":630,"children":631},{"style":532},[632],{"type":47,"value":554},{"type":41,"tag":525,"props":634,"children":635},{"style":532},[636],{"type":47,"value":559},{"type":41,"tag":525,"props":638,"children":639},{"style":532},[640],{"type":47,"value":564},{"type":41,"tag":525,"props":642,"children":643},{"style":567},[644],{"type":47,"value":22},{"type":41,"tag":525,"props":646,"children":647},{"style":532},[648],{"type":47,"value":649},"\"\n",{"type":41,"tag":525,"props":651,"children":653},{"class":527,"line":652},5,[654],{"type":41,"tag":525,"props":655,"children":656},{"style":532},[657],{"type":47,"value":658},"}\n",{"type":41,"tag":240,"props":660,"children":662},{"id":661},"step-3-use-the-result",[663],{"type":47,"value":664},"Step 3: Use the result",{"type":41,"tag":50,"props":666,"children":667},{},[668],{"type":47,"value":669},"The tool returns:",{"type":41,"tag":116,"props":671,"children":672},{},[673,684],{"type":41,"tag":120,"props":674,"children":675},{},[676,682],{"type":41,"tag":60,"props":677,"children":679},{"className":678},[],[680],{"type":47,"value":681},"file_key",{"type":47,"value":683}," — the key of the newly created file",{"type":41,"tag":120,"props":685,"children":686},{},[687,693],{"type":41,"tag":60,"props":688,"children":690},{"className":689},[],[691],{"type":47,"value":692},"file_url",{"type":47,"value":694}," — a direct URL to open the file in Figma",{"type":41,"tag":50,"props":696,"children":697},{},[698,699,704,706,711],{"type":47,"value":82},{"type":41,"tag":60,"props":700,"children":702},{"className":701},[],[703],{"type":47,"value":681},{"type":47,"value":705}," for subsequent tool calls like ",{"type":41,"tag":60,"props":707,"children":709},{"className":708},[],[710],{"type":47,"value":75},{"type":47,"value":77},{"type":41,"tag":98,"props":713,"children":715},{"id":714},"important-notes",[716],{"type":47,"value":717},"Important Notes",{"type":41,"tag":116,"props":719,"children":720},{},[721,733,756],{"type":41,"tag":120,"props":722,"children":723},{},[724,726,731],{"type":47,"value":725},"The file is created in the user's ",{"type":41,"tag":54,"props":727,"children":728},{},[729],{"type":47,"value":730},"drafts folder",{"type":47,"value":732}," for the selected plan.",{"type":41,"tag":120,"props":734,"children":735},{},[736,738,743,744,749,750,755],{"type":47,"value":737},"Supported editor types are ",{"type":41,"tag":60,"props":739,"children":741},{"className":740},[],[742],{"type":47,"value":223},{"type":47,"value":320},{"type":41,"tag":60,"props":745,"children":747},{"className":746},[],[748],{"type":47,"value":500},{"type":47,"value":335},{"type":41,"tag":60,"props":751,"children":753},{"className":752},[],[754],{"type":47,"value":507},{"type":47,"value":77},{"type":41,"tag":120,"props":757,"children":758},{},[759,761,766,768,774],{"type":47,"value":760},"If ",{"type":41,"tag":60,"props":762,"children":764},{"className":763},[],[765],{"type":47,"value":75},{"type":47,"value":767}," is your next step, load the ",{"type":41,"tag":60,"props":769,"children":771},{"className":770},[],[772],{"type":47,"value":773},"figma-use",{"type":47,"value":775}," skill before calling it.",{"type":41,"tag":98,"props":777,"children":779},{"id":778},"editor-specific-notes",[780],{"type":47,"value":781},"Editor-specific notes",{"type":41,"tag":240,"props":783,"children":785},{"id":784},"slides-newly-created-files-have-an-empty-grid",[786],{"type":47,"value":787},"Slides — newly created files have an empty grid",{"type":41,"tag":50,"props":789,"children":790},{},[791,793,798,800,805,807,813,815,821,823,829,831,837],{"type":47,"value":792},"A ",{"type":41,"tag":60,"props":794,"children":796},{"className":795},[],[797],{"type":47,"value":150},{"type":47,"value":799}," file produced by this tool starts with ",{"type":41,"tag":54,"props":801,"children":802},{},[803],{"type":47,"value":804},"zero rows and zero slides",{"type":47,"value":806}," — ",{"type":41,"tag":60,"props":808,"children":810},{"className":809},[],[811],{"type":47,"value":812},"figma.getSlideGrid()",{"type":47,"value":814}," returns ",{"type":41,"tag":60,"props":816,"children":818},{"className":817},[],[819],{"type":47,"value":820},"[]",{"type":47,"value":822},", not a default first slide. The page's only child is the ",{"type":41,"tag":60,"props":824,"children":826},{"className":825},[],[827],{"type":47,"value":828},"SLIDE_GRID",{"type":47,"value":830}," node itself, which is empty until you create content. The first call to ",{"type":41,"tag":60,"props":832,"children":834},{"className":833},[],[835],{"type":47,"value":836},"figma.createSlide()",{"type":47,"value":838}," implicitly creates row 0 and inserts the new slide there.",{"type":41,"tag":50,"props":840,"children":841},{},[842,844,849,851,857,859,866],{"type":47,"value":843},"If your follow-up ",{"type":41,"tag":60,"props":845,"children":847},{"className":846},[],[848],{"type":47,"value":75},{"type":47,"value":850}," script assumes at least one slide exists (e.g. to read theme tokens off it), guard for the empty case or call ",{"type":41,"tag":60,"props":852,"children":854},{"className":853},[],[855],{"type":47,"value":856},"createSlide()",{"type":47,"value":858}," first. See ",{"type":41,"tag":860,"props":861,"children":863},"a",{"href":862},"..\u002Ffigma-use-slides\u002Freferences\u002Fslide-grid.md",[864],{"type":47,"value":865},"figma-use-slides → slide-grid",{"type":47,"value":867}," for full details.",{"type":41,"tag":869,"props":870,"children":871},"style",{},[872],{"type":47,"value":873},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":875,"total":1036},[876,894,901,912,923,939,953,966,988,997,1012,1023],{"slug":877,"name":877,"fn":878,"description":879,"org":880,"tags":881,"stars":23,"repoUrl":24,"updatedAt":893},"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},[882,883,886,887,890],{"name":21,"slug":22,"type":15},{"name":884,"slug":885,"type":15},"Design System","design-system",{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15},"Frontend","frontend",{"name":891,"slug":892,"type":15},"UI Components","ui-components","2026-07-31T05:52:30.590302",{"slug":4,"name":4,"fn":5,"description":6,"org":895,"tags":896,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[897,898,899,900],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":902,"name":902,"fn":903,"description":904,"org":905,"tags":906,"stars":23,"repoUrl":24,"updatedAt":911},"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},[907,908,909,910],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15},{"name":891,"slug":892,"type":15},"2026-07-10T06:43:51.122606",{"slug":913,"name":913,"fn":914,"description":915,"org":916,"tags":917,"stars":23,"repoUrl":24,"updatedAt":922},"figma-generate-design","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},[918,919,920,921],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15},{"name":891,"slug":892,"type":15},"2026-04-06T18:11:48.952023",{"slug":924,"name":924,"fn":925,"description":926,"org":927,"tags":928,"stars":23,"repoUrl":24,"updatedAt":938},"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},[929,932,933,936,937],{"name":930,"slug":931,"type":15},"Architecture","architecture",{"name":21,"slug":22,"type":15},{"name":934,"slug":935,"type":15},"Diagrams","diagrams",{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-04-28T05:43:52.834484",{"slug":940,"name":940,"fn":941,"description":942,"org":943,"tags":944,"stars":23,"repoUrl":24,"updatedAt":952},"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},[945,946,947,950,951],{"name":21,"slug":22,"type":15},{"name":884,"slug":885,"type":15},{"name":948,"slug":949,"type":15},"Documentation","documentation",{"name":9,"slug":8,"type":15},{"name":891,"slug":892,"type":15},"2026-07-31T05:52:28.587088",{"slug":954,"name":954,"fn":955,"description":956,"org":957,"tags":958,"stars":23,"repoUrl":24,"updatedAt":965},"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},[959,962,963,964],{"name":960,"slug":961,"type":15},"Animation","animation",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15},"2026-06-25T07:13:13.645254",{"slug":967,"name":967,"fn":968,"description":969,"org":970,"tags":971,"stars":23,"repoUrl":24,"updatedAt":987},"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},[972,973,974,975,978,981,984],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15},{"name":976,"slug":977,"type":15},"iOS","ios",{"name":979,"slug":980,"type":15},"Mobile","mobile",{"name":982,"slug":983,"type":15},"SwiftUI","swiftui",{"name":985,"slug":986,"type":15},"Visual Design","visual-design","2026-06-09T07:16:28.204756",{"slug":773,"name":773,"fn":989,"description":990,"org":991,"tags":992,"stars":23,"repoUrl":24,"updatedAt":996},"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},[993,994,995],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-07-31T05:52:29.57808",{"slug":998,"name":998,"fn":999,"description":1000,"org":1001,"tags":1002,"stars":23,"repoUrl":24,"updatedAt":1011},"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},[1003,1006,1007,1009,1010],{"name":1004,"slug":1005,"type":15},"Collaboration","collaboration",{"name":21,"slug":22,"type":15},{"name":1008,"slug":142,"type":15},"FigJam",{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-04-28T05:43:51.600727",{"slug":1013,"name":1013,"fn":1014,"description":1015,"org":1016,"tags":1017,"stars":23,"repoUrl":24,"updatedAt":1022},"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},[1018,1019,1020,1021],{"name":960,"slug":961,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-06-25T07:13:12.398176",{"slug":1024,"name":1024,"fn":1025,"description":1026,"org":1027,"tags":1028,"stars":23,"repoUrl":24,"updatedAt":1035},"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},[1029,1030,1031,1032],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":1033,"slug":1034,"type":15},"Presentations","presentations","2026-05-14T06:09:42.171824",14,{"items":1038,"total":1036},[1039,1047,1054,1061,1068,1076,1084],{"slug":877,"name":877,"fn":878,"description":879,"org":1040,"tags":1041,"stars":23,"repoUrl":24,"updatedAt":893},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1042,1043,1044,1045,1046],{"name":21,"slug":22,"type":15},{"name":884,"slug":885,"type":15},{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15},{"name":891,"slug":892,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1048,"tags":1049,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1050,1051,1052,1053],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"slug":902,"name":902,"fn":903,"description":904,"org":1055,"tags":1056,"stars":23,"repoUrl":24,"updatedAt":911},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1057,1058,1059,1060],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15},{"name":891,"slug":892,"type":15},{"slug":913,"name":913,"fn":914,"description":915,"org":1062,"tags":1063,"stars":23,"repoUrl":24,"updatedAt":922},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1064,1065,1066,1067],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15},{"name":891,"slug":892,"type":15},{"slug":924,"name":924,"fn":925,"description":926,"org":1069,"tags":1070,"stars":23,"repoUrl":24,"updatedAt":938},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1071,1072,1073,1074,1075],{"name":930,"slug":931,"type":15},{"name":21,"slug":22,"type":15},{"name":934,"slug":935,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"slug":940,"name":940,"fn":941,"description":942,"org":1077,"tags":1078,"stars":23,"repoUrl":24,"updatedAt":952},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1079,1080,1081,1082,1083],{"name":21,"slug":22,"type":15},{"name":884,"slug":885,"type":15},{"name":948,"slug":949,"type":15},{"name":9,"slug":8,"type":15},{"name":891,"slug":892,"type":15},{"slug":954,"name":954,"fn":955,"description":956,"org":1085,"tags":1086,"stars":23,"repoUrl":24,"updatedAt":965},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1087,1088,1089,1090],{"name":960,"slug":961,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":888,"slug":889,"type":15}]