[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-figma-figma-use-figjam":3,"mdc--eijv2-key":37,"related-org-figma-figma-use-figjam":821,"related-repo-figma-figma-use-figjam":983},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"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},"figma","Figma","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ffigma.png",[12,16,19,22,23],{"name":13,"slug":14,"type":15},"Collaboration","collaboration","tag",{"name":17,"slug":18,"type":15},"MCP","mcp",{"name":20,"slug":21,"type":15},"FigJam","figjam",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"Design","design",1805,"https:\u002F\u002Fgithub.com\u002Ffigma\u002Fmcp-server-guide","2026-04-28T05:43:51.600727",null,164,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"A guide on how to use the Figma MCP server","https:\u002F\u002Fgithub.com\u002Ffigma\u002Fmcp-server-guide\u002Ftree\u002FHEAD\u002Fskills\u002Ffigma-use-figjam","---\nname: figma-use-figjam\ndescription: \"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.\"\ndisable-model-invocation: false\n---\n\n# use_figma — Figma Plugin API Skill for FigJam\n\nThis skill contains FigJam-specific context for the `use_figma` MCP tool. The [figma-use](..\u002Ffigma-use\u002FSKILL.md) skill provides foundational context for plugin API execution via MCP as well as the full Figma plugin API for more advanced use-cases that are not described here.\n\n**Always include `figma-use-figjam` in the comma-separated `skillNames` parameter when calling `use_figma` for FigJam operations. If this skill was loaded via an MCP resource, you MUST prefix the name with `resource:` (e.g. `resource:figma-use-figjam`).** This is a logging parameter used to track skill usage — it does not affect execution.\n\n> **FigJam URL is `figma.com\u002Fboard\u002F...`.** Do NOT call `figma.createPage()` in FigJam — it throws `TypeError: figma.createPage no such property 'createPage' on the figma global object`. `createPage()` is a Design-file API only (`figma.com\u002Fdesign\u002F...`). FigJam files have a single implicit page; organize content with sections instead (see [create-section](references\u002Fcreate-section.md)).\n\n## Inspecting FigJam Files\n\n**`get_figjam` is the inspection tool for FigJam files.** It returns the full node tree as XML, including IDs of pages, sections, stickies, connectors, and other nodes you need to reference in subsequent `use_figma` calls.\n\n- **Use `get_figjam` upfront** before writing any `use_figma` code that needs to reference existing nodes (page IDs, section IDs, etc.). Don't try to discover IDs by running an inspection script — `console.log` output from `use_figma` is **not returned to the agent** (see [figma-use Critical Rule #4](..\u002Ffigma-use\u002FSKILL.md)). Only the `return` value comes back.\n- **`get_metadata` does NOT work on FigJam files** — it is design-mode only and will fail immediately with \"unsupported for FigJam files\".\n- **`get_screenshot` requires a valid `nodeId`** — passing an empty nodeId returns \"invalid nodeId\" error. Get IDs from `get_figjam` first.\n- If you forgot to `return` an ID from a previous `use_figma` call and need it now, call `get_figjam` rather than re-running an inspection script.\n\n## Loading Reference Docs Efficiently\n\nLoad only the references your task needs — but when you do need to load multiple, **issue all reads in a single parallel tool-call batch**, not sequentially across turns. For a typical board-creation task, that means a single message containing reads for `plan-board-content` plus the 3-4 specific node-type references you'll use.\n\n## Deferred Tools — Batch-Load Schemas\n\nThe Figma MCP tools (`use_figma`, `get_figjam`, `get_screenshot`, `get_metadata`, `create_new_file`, `whoami`) often appear as deferred tools that require `ToolSearch` to load their schemas before they can be called. **Load all schemas in a single `ToolSearch` call** using the `select:` syntax instead of one call per tool:\n\n```\nToolSearch query=\"select:use_figma,get_figjam,get_screenshot,get_metadata,create_new_file\"\n```\n\nSix sequential `ToolSearch` calls is six round trips before any work happens. One batched call is one round trip.\n\n## Text Mutations — Canonical Recipe\n\nEvery FigJam text mutation (sticky\u002Fshape\u002Flabel\u002Ftable cell\u002Fconnector text, standalone text nodes) follows the same recipe as Design files: load font → `await` → mutate → return affected IDs. Skipping the load throws `Cannot write to node with unloaded font \"\u003Cfamily> \u003Cstyle>\"`. See [figma-use → gotchas.md → Canonical text-edit recipe](..\u002Ffigma-use\u002Freferences\u002Fgotchas.md#canonical-text-edit-recipe-font-load--await--mutate--return-ids). FigJam-specific note: sublayer defaults vary (sticky → `Inter Medium`, shape → `Inter Medium`, connector → invalid until set), so always load from `node.text.fontName` rather than hardcoding `{ family: 'Inter', style: 'Regular' }`.\n\n## Adding Images to a FigJam Board\n\n**`upload_assets` is the ONLY supported way to add images to a FigJam file.** Do NOT use `figma.createImage()` or `figma.createImageAsync()` from inside `use_figma` — they are unsupported as image-upload entry points in FigJam. Call `upload_assets` with the FigJam `fileKey`; the tool returns single-use upload URLs that you POST raw image bytes to, and the image is committed and placed automatically. Pass `nodeId` (with `count: 1`) to attach the upload to an existing FigJam node as a fill; omit `nodeId` to drop the image onto the board as a new layer.\n\nFor the full request\u002Fresponse shape, see [figma-use → api-reference.md → Images](..\u002Ffigma-use\u002Freferences\u002Fapi-reference.md#images).\n\n## Reference Docs\n\n- [plan-board-content](references\u002Fplan-board-content.md) - Read this for any board content request — board template, retro, brainstorm, ice breaker, meeting board, scaffold\n  - Covers planning of generated board content, including sequential outline, sections, intents, and hierarchical text\n  - Delegates to other references for specific API details\n- [create-section](references\u002Fcreate-section.md) — Create and configure FigJam sections (sizing, naming, colors, content visibility, organizing nodes, column layouts)\n- [create-sticky](references\u002Fcreate-sticky.md) — Create and configure FigJam sticky notes (colors, sizing, text, author visibility, batch creation)\n- [create-connector](references\u002Fcreate-connector.md) — Create and configure FigJam connectors (endpoints, arrows, line types, labels, colors, diagram wiring)\n- [create-text](references\u002Fcreate-text.md) — Create and configure FigJam text nodes (font loading, preset fonts and colors, sizing, lists, mind map operations)\n- [position-figjam-nodes](references\u002Fposition-figjam-nodes.md) — Position, size, and reparent nodes on the canvas (including within sections)\n- [create-shape-with-text](references\u002Fcreate-shape-with-text.md) — Create and configure FigJam shapes with embedded text (shape types, color presets, sizing to fit text, diagram layouts)\n- [create-code-block](references\u002Fcreate-code-block.md) — Create and configure FigJam code block nodes (languages, syntax highlighting, positioning, embedding in sections)\n- [create-table](references\u002Fcreate-table.md) — Create and configure FigJam tables (rows, columns, cell text, color presets, resizing)\n- [edit-text](references\u002Fedit-text.md) — Edit existing text nodes (font loading, styled ranges, find\u002Freplace, FigJam Charcoal default color)\n- [create-label](references\u002Fcreate-label.md) — Create and configure FigJam label nodes (small numbered\u002Flettered circle callout markers, sequences, positioning)\n- [batch-modify](references\u002Fbatch-modify.md) — Patterns for modifying many existing nodes at once (bulk style changes, repositioning, property updates)\n- [figjam-colors](references\u002Ffigjam-colors.md) — Canonical FigJam color palettes for every node type (sticky, section, connector, shape, label) plus the `hex\u002F255` notation rule and the `h()` helper\n",{"data":38,"body":40},{"name":4,"description":6,"disable-model-invocation":39},false,{"type":41,"children":42},"root",[43,52,76,125,186,193,216,353,359,379,385,460,472,484,490,549,555,631,643,649],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"use_figma-figma-plugin-api-skill-for-figjam",[49],{"type":50,"value":51},"text","use_figma — Figma Plugin API Skill for FigJam",{"type":44,"tag":53,"props":54,"children":55},"p",{},[56,58,65,67,74],{"type":50,"value":57},"This skill contains FigJam-specific context for the ",{"type":44,"tag":59,"props":60,"children":62},"code",{"className":61},[],[63],{"type":50,"value":64},"use_figma",{"type":50,"value":66}," MCP tool. The ",{"type":44,"tag":68,"props":69,"children":71},"a",{"href":70},"..\u002Ffigma-use\u002FSKILL.md",[72],{"type":50,"value":73},"figma-use",{"type":50,"value":75}," skill provides foundational context for plugin API execution via MCP as well as the full Figma plugin API for more advanced use-cases that are not described here.",{"type":44,"tag":53,"props":77,"children":78},{},[79,123],{"type":44,"tag":80,"props":81,"children":82},"strong",{},[83,85,90,92,98,100,105,107,113,115,121],{"type":50,"value":84},"Always include ",{"type":44,"tag":59,"props":86,"children":88},{"className":87},[],[89],{"type":50,"value":4},{"type":50,"value":91}," in the comma-separated ",{"type":44,"tag":59,"props":93,"children":95},{"className":94},[],[96],{"type":50,"value":97},"skillNames",{"type":50,"value":99}," parameter when calling ",{"type":44,"tag":59,"props":101,"children":103},{"className":102},[],[104],{"type":50,"value":64},{"type":50,"value":106}," for FigJam operations. If this skill was loaded via an MCP resource, you MUST prefix the name with ",{"type":44,"tag":59,"props":108,"children":110},{"className":109},[],[111],{"type":50,"value":112},"resource:",{"type":50,"value":114}," (e.g. ",{"type":44,"tag":59,"props":116,"children":118},{"className":117},[],[119],{"type":50,"value":120},"resource:figma-use-figjam",{"type":50,"value":122},").",{"type":50,"value":124}," This is a logging parameter used to track skill usage — it does not affect execution.",{"type":44,"tag":126,"props":127,"children":128},"blockquote",{},[129],{"type":44,"tag":53,"props":130,"children":131},{},[132,145,147,153,155,161,163,169,171,177,179,185],{"type":44,"tag":80,"props":133,"children":134},{},[135,137,143],{"type":50,"value":136},"FigJam URL is ",{"type":44,"tag":59,"props":138,"children":140},{"className":139},[],[141],{"type":50,"value":142},"figma.com\u002Fboard\u002F...",{"type":50,"value":144},".",{"type":50,"value":146}," Do NOT call ",{"type":44,"tag":59,"props":148,"children":150},{"className":149},[],[151],{"type":50,"value":152},"figma.createPage()",{"type":50,"value":154}," in FigJam — it throws ",{"type":44,"tag":59,"props":156,"children":158},{"className":157},[],[159],{"type":50,"value":160},"TypeError: figma.createPage no such property 'createPage' on the figma global object",{"type":50,"value":162},". ",{"type":44,"tag":59,"props":164,"children":166},{"className":165},[],[167],{"type":50,"value":168},"createPage()",{"type":50,"value":170}," is a Design-file API only (",{"type":44,"tag":59,"props":172,"children":174},{"className":173},[],[175],{"type":50,"value":176},"figma.com\u002Fdesign\u002F...",{"type":50,"value":178},"). FigJam files have a single implicit page; organize content with sections instead (see ",{"type":44,"tag":68,"props":180,"children":182},{"href":181},"references\u002Fcreate-section.md",[183],{"type":50,"value":184},"create-section",{"type":50,"value":122},{"type":44,"tag":187,"props":188,"children":190},"h2",{"id":189},"inspecting-figjam-files",[191],{"type":50,"value":192},"Inspecting FigJam Files",{"type":44,"tag":53,"props":194,"children":195},{},[196,207,209,214],{"type":44,"tag":80,"props":197,"children":198},{},[199,205],{"type":44,"tag":59,"props":200,"children":202},{"className":201},[],[203],{"type":50,"value":204},"get_figjam",{"type":50,"value":206}," is the inspection tool for FigJam files.",{"type":50,"value":208}," It returns the full node tree as XML, including IDs of pages, sections, stickies, connectors, and other nodes you need to reference in subsequent ",{"type":44,"tag":59,"props":210,"children":212},{"className":211},[],[213],{"type":50,"value":64},{"type":50,"value":215}," calls.",{"type":44,"tag":217,"props":218,"children":219},"ul",{},[220,282,298,327],{"type":44,"tag":221,"props":222,"children":223},"li",{},[224,236,238,243,245,251,253,258,260,265,267,272,274,280],{"type":44,"tag":80,"props":225,"children":226},{},[227,229,234],{"type":50,"value":228},"Use ",{"type":44,"tag":59,"props":230,"children":232},{"className":231},[],[233],{"type":50,"value":204},{"type":50,"value":235}," upfront",{"type":50,"value":237}," before writing any ",{"type":44,"tag":59,"props":239,"children":241},{"className":240},[],[242],{"type":50,"value":64},{"type":50,"value":244}," code that needs to reference existing nodes (page IDs, section IDs, etc.). Don't try to discover IDs by running an inspection script — ",{"type":44,"tag":59,"props":246,"children":248},{"className":247},[],[249],{"type":50,"value":250},"console.log",{"type":50,"value":252}," output from ",{"type":44,"tag":59,"props":254,"children":256},{"className":255},[],[257],{"type":50,"value":64},{"type":50,"value":259}," is ",{"type":44,"tag":80,"props":261,"children":262},{},[263],{"type":50,"value":264},"not returned to the agent",{"type":50,"value":266}," (see ",{"type":44,"tag":68,"props":268,"children":269},{"href":70},[270],{"type":50,"value":271},"figma-use Critical Rule #4",{"type":50,"value":273},"). Only the ",{"type":44,"tag":59,"props":275,"children":277},{"className":276},[],[278],{"type":50,"value":279},"return",{"type":50,"value":281}," value comes back.",{"type":44,"tag":221,"props":283,"children":284},{},[285,296],{"type":44,"tag":80,"props":286,"children":287},{},[288,294],{"type":44,"tag":59,"props":289,"children":291},{"className":290},[],[292],{"type":50,"value":293},"get_metadata",{"type":50,"value":295}," does NOT work on FigJam files",{"type":50,"value":297}," — it is design-mode only and will fail immediately with \"unsupported for FigJam files\".",{"type":44,"tag":221,"props":299,"children":300},{},[301,318,320,325],{"type":44,"tag":80,"props":302,"children":303},{},[304,310,312],{"type":44,"tag":59,"props":305,"children":307},{"className":306},[],[308],{"type":50,"value":309},"get_screenshot",{"type":50,"value":311}," requires a valid ",{"type":44,"tag":59,"props":313,"children":315},{"className":314},[],[316],{"type":50,"value":317},"nodeId",{"type":50,"value":319}," — passing an empty nodeId returns \"invalid nodeId\" error. Get IDs from ",{"type":44,"tag":59,"props":321,"children":323},{"className":322},[],[324],{"type":50,"value":204},{"type":50,"value":326}," first.",{"type":44,"tag":221,"props":328,"children":329},{},[330,332,337,339,344,346,351],{"type":50,"value":331},"If you forgot to ",{"type":44,"tag":59,"props":333,"children":335},{"className":334},[],[336],{"type":50,"value":279},{"type":50,"value":338}," an ID from a previous ",{"type":44,"tag":59,"props":340,"children":342},{"className":341},[],[343],{"type":50,"value":64},{"type":50,"value":345}," call and need it now, call ",{"type":44,"tag":59,"props":347,"children":349},{"className":348},[],[350],{"type":50,"value":204},{"type":50,"value":352}," rather than re-running an inspection script.",{"type":44,"tag":187,"props":354,"children":356},{"id":355},"loading-reference-docs-efficiently",[357],{"type":50,"value":358},"Loading Reference Docs Efficiently",{"type":44,"tag":53,"props":360,"children":361},{},[362,364,369,371,377],{"type":50,"value":363},"Load only the references your task needs — but when you do need to load multiple, ",{"type":44,"tag":80,"props":365,"children":366},{},[367],{"type":50,"value":368},"issue all reads in a single parallel tool-call batch",{"type":50,"value":370},", not sequentially across turns. For a typical board-creation task, that means a single message containing reads for ",{"type":44,"tag":59,"props":372,"children":374},{"className":373},[],[375],{"type":50,"value":376},"plan-board-content",{"type":50,"value":378}," plus the 3-4 specific node-type references you'll use.",{"type":44,"tag":187,"props":380,"children":382},{"id":381},"deferred-tools-batch-load-schemas",[383],{"type":50,"value":384},"Deferred Tools — Batch-Load Schemas",{"type":44,"tag":53,"props":386,"children":387},{},[388,390,395,397,402,403,408,409,414,415,421,422,428,430,436,438,450,452,458],{"type":50,"value":389},"The Figma MCP tools (",{"type":44,"tag":59,"props":391,"children":393},{"className":392},[],[394],{"type":50,"value":64},{"type":50,"value":396},", ",{"type":44,"tag":59,"props":398,"children":400},{"className":399},[],[401],{"type":50,"value":204},{"type":50,"value":396},{"type":44,"tag":59,"props":404,"children":406},{"className":405},[],[407],{"type":50,"value":309},{"type":50,"value":396},{"type":44,"tag":59,"props":410,"children":412},{"className":411},[],[413],{"type":50,"value":293},{"type":50,"value":396},{"type":44,"tag":59,"props":416,"children":418},{"className":417},[],[419],{"type":50,"value":420},"create_new_file",{"type":50,"value":396},{"type":44,"tag":59,"props":423,"children":425},{"className":424},[],[426],{"type":50,"value":427},"whoami",{"type":50,"value":429},") often appear as deferred tools that require ",{"type":44,"tag":59,"props":431,"children":433},{"className":432},[],[434],{"type":50,"value":435},"ToolSearch",{"type":50,"value":437}," to load their schemas before they can be called. ",{"type":44,"tag":80,"props":439,"children":440},{},[441,443,448],{"type":50,"value":442},"Load all schemas in a single ",{"type":44,"tag":59,"props":444,"children":446},{"className":445},[],[447],{"type":50,"value":435},{"type":50,"value":449}," call",{"type":50,"value":451}," using the ",{"type":44,"tag":59,"props":453,"children":455},{"className":454},[],[456],{"type":50,"value":457},"select:",{"type":50,"value":459}," syntax instead of one call per tool:",{"type":44,"tag":461,"props":462,"children":466},"pre",{"className":463,"code":465,"language":50},[464],"language-text","ToolSearch query=\"select:use_figma,get_figjam,get_screenshot,get_metadata,create_new_file\"\n",[467],{"type":44,"tag":59,"props":468,"children":470},{"__ignoreMap":469},"",[471],{"type":50,"value":465},{"type":44,"tag":53,"props":473,"children":474},{},[475,477,482],{"type":50,"value":476},"Six sequential ",{"type":44,"tag":59,"props":478,"children":480},{"className":479},[],[481],{"type":50,"value":435},{"type":50,"value":483}," calls is six round trips before any work happens. One batched call is one round trip.",{"type":44,"tag":187,"props":485,"children":487},{"id":486},"text-mutations-canonical-recipe",[488],{"type":50,"value":489},"Text Mutations — Canonical Recipe",{"type":44,"tag":53,"props":491,"children":492},{},[493,495,501,503,509,511,517,519,525,527,532,534,540,542,548],{"type":50,"value":494},"Every FigJam text mutation (sticky\u002Fshape\u002Flabel\u002Ftable cell\u002Fconnector text, standalone text nodes) follows the same recipe as Design files: load font → ",{"type":44,"tag":59,"props":496,"children":498},{"className":497},[],[499],{"type":50,"value":500},"await",{"type":50,"value":502}," → mutate → return affected IDs. Skipping the load throws ",{"type":44,"tag":59,"props":504,"children":506},{"className":505},[],[507],{"type":50,"value":508},"Cannot write to node with unloaded font \"\u003Cfamily> \u003Cstyle>\"",{"type":50,"value":510},". See ",{"type":44,"tag":68,"props":512,"children":514},{"href":513},"..\u002Ffigma-use\u002Freferences\u002Fgotchas.md#canonical-text-edit-recipe-font-load--await--mutate--return-ids",[515],{"type":50,"value":516},"figma-use → gotchas.md → Canonical text-edit recipe",{"type":50,"value":518},". FigJam-specific note: sublayer defaults vary (sticky → ",{"type":44,"tag":59,"props":520,"children":522},{"className":521},[],[523],{"type":50,"value":524},"Inter Medium",{"type":50,"value":526},", shape → ",{"type":44,"tag":59,"props":528,"children":530},{"className":529},[],[531],{"type":50,"value":524},{"type":50,"value":533},", connector → invalid until set), so always load from ",{"type":44,"tag":59,"props":535,"children":537},{"className":536},[],[538],{"type":50,"value":539},"node.text.fontName",{"type":50,"value":541}," rather than hardcoding ",{"type":44,"tag":59,"props":543,"children":545},{"className":544},[],[546],{"type":50,"value":547},"{ family: 'Inter', style: 'Regular' }",{"type":50,"value":144},{"type":44,"tag":187,"props":550,"children":552},{"id":551},"adding-images-to-a-figjam-board",[553],{"type":50,"value":554},"Adding Images to a FigJam Board",{"type":44,"tag":53,"props":556,"children":557},{},[558,569,571,577,579,585,587,592,594,599,601,607,609,614,616,622,624,629],{"type":44,"tag":80,"props":559,"children":560},{},[561,567],{"type":44,"tag":59,"props":562,"children":564},{"className":563},[],[565],{"type":50,"value":566},"upload_assets",{"type":50,"value":568}," is the ONLY supported way to add images to a FigJam file.",{"type":50,"value":570}," Do NOT use ",{"type":44,"tag":59,"props":572,"children":574},{"className":573},[],[575],{"type":50,"value":576},"figma.createImage()",{"type":50,"value":578}," or ",{"type":44,"tag":59,"props":580,"children":582},{"className":581},[],[583],{"type":50,"value":584},"figma.createImageAsync()",{"type":50,"value":586}," from inside ",{"type":44,"tag":59,"props":588,"children":590},{"className":589},[],[591],{"type":50,"value":64},{"type":50,"value":593}," — they are unsupported as image-upload entry points in FigJam. Call ",{"type":44,"tag":59,"props":595,"children":597},{"className":596},[],[598],{"type":50,"value":566},{"type":50,"value":600}," with the FigJam ",{"type":44,"tag":59,"props":602,"children":604},{"className":603},[],[605],{"type":50,"value":606},"fileKey",{"type":50,"value":608},"; the tool returns single-use upload URLs that you POST raw image bytes to, and the image is committed and placed automatically. Pass ",{"type":44,"tag":59,"props":610,"children":612},{"className":611},[],[613],{"type":50,"value":317},{"type":50,"value":615}," (with ",{"type":44,"tag":59,"props":617,"children":619},{"className":618},[],[620],{"type":50,"value":621},"count: 1",{"type":50,"value":623},") to attach the upload to an existing FigJam node as a fill; omit ",{"type":44,"tag":59,"props":625,"children":627},{"className":626},[],[628],{"type":50,"value":317},{"type":50,"value":630}," to drop the image onto the board as a new layer.",{"type":44,"tag":53,"props":632,"children":633},{},[634,636,642],{"type":50,"value":635},"For the full request\u002Fresponse shape, see ",{"type":44,"tag":68,"props":637,"children":639},{"href":638},"..\u002Ffigma-use\u002Freferences\u002Fapi-reference.md#images",[640],{"type":50,"value":641},"figma-use → api-reference.md → Images",{"type":50,"value":144},{"type":44,"tag":187,"props":644,"children":646},{"id":645},"reference-docs",[647],{"type":50,"value":648},"Reference Docs",{"type":44,"tag":217,"props":650,"children":651},{},[652,675,684,695,706,717,728,739,750,761,772,783,794],{"type":44,"tag":221,"props":653,"children":654},{},[655,660,662],{"type":44,"tag":68,"props":656,"children":658},{"href":657},"references\u002Fplan-board-content.md",[659],{"type":50,"value":376},{"type":50,"value":661}," - Read this for any board content request — board template, retro, brainstorm, ice breaker, meeting board, scaffold\n",{"type":44,"tag":217,"props":663,"children":664},{},[665,670],{"type":44,"tag":221,"props":666,"children":667},{},[668],{"type":50,"value":669},"Covers planning of generated board content, including sequential outline, sections, intents, and hierarchical text",{"type":44,"tag":221,"props":671,"children":672},{},[673],{"type":50,"value":674},"Delegates to other references for specific API details",{"type":44,"tag":221,"props":676,"children":677},{},[678,682],{"type":44,"tag":68,"props":679,"children":680},{"href":181},[681],{"type":50,"value":184},{"type":50,"value":683}," — Create and configure FigJam sections (sizing, naming, colors, content visibility, organizing nodes, column layouts)",{"type":44,"tag":221,"props":685,"children":686},{},[687,693],{"type":44,"tag":68,"props":688,"children":690},{"href":689},"references\u002Fcreate-sticky.md",[691],{"type":50,"value":692},"create-sticky",{"type":50,"value":694}," — Create and configure FigJam sticky notes (colors, sizing, text, author visibility, batch creation)",{"type":44,"tag":221,"props":696,"children":697},{},[698,704],{"type":44,"tag":68,"props":699,"children":701},{"href":700},"references\u002Fcreate-connector.md",[702],{"type":50,"value":703},"create-connector",{"type":50,"value":705}," — Create and configure FigJam connectors (endpoints, arrows, line types, labels, colors, diagram wiring)",{"type":44,"tag":221,"props":707,"children":708},{},[709,715],{"type":44,"tag":68,"props":710,"children":712},{"href":711},"references\u002Fcreate-text.md",[713],{"type":50,"value":714},"create-text",{"type":50,"value":716}," — Create and configure FigJam text nodes (font loading, preset fonts and colors, sizing, lists, mind map operations)",{"type":44,"tag":221,"props":718,"children":719},{},[720,726],{"type":44,"tag":68,"props":721,"children":723},{"href":722},"references\u002Fposition-figjam-nodes.md",[724],{"type":50,"value":725},"position-figjam-nodes",{"type":50,"value":727}," — Position, size, and reparent nodes on the canvas (including within sections)",{"type":44,"tag":221,"props":729,"children":730},{},[731,737],{"type":44,"tag":68,"props":732,"children":734},{"href":733},"references\u002Fcreate-shape-with-text.md",[735],{"type":50,"value":736},"create-shape-with-text",{"type":50,"value":738}," — Create and configure FigJam shapes with embedded text (shape types, color presets, sizing to fit text, diagram layouts)",{"type":44,"tag":221,"props":740,"children":741},{},[742,748],{"type":44,"tag":68,"props":743,"children":745},{"href":744},"references\u002Fcreate-code-block.md",[746],{"type":50,"value":747},"create-code-block",{"type":50,"value":749}," — Create and configure FigJam code block nodes (languages, syntax highlighting, positioning, embedding in sections)",{"type":44,"tag":221,"props":751,"children":752},{},[753,759],{"type":44,"tag":68,"props":754,"children":756},{"href":755},"references\u002Fcreate-table.md",[757],{"type":50,"value":758},"create-table",{"type":50,"value":760}," — Create and configure FigJam tables (rows, columns, cell text, color presets, resizing)",{"type":44,"tag":221,"props":762,"children":763},{},[764,770],{"type":44,"tag":68,"props":765,"children":767},{"href":766},"references\u002Fedit-text.md",[768],{"type":50,"value":769},"edit-text",{"type":50,"value":771}," — Edit existing text nodes (font loading, styled ranges, find\u002Freplace, FigJam Charcoal default color)",{"type":44,"tag":221,"props":773,"children":774},{},[775,781],{"type":44,"tag":68,"props":776,"children":778},{"href":777},"references\u002Fcreate-label.md",[779],{"type":50,"value":780},"create-label",{"type":50,"value":782}," — Create and configure FigJam label nodes (small numbered\u002Flettered circle callout markers, sequences, positioning)",{"type":44,"tag":221,"props":784,"children":785},{},[786,792],{"type":44,"tag":68,"props":787,"children":789},{"href":788},"references\u002Fbatch-modify.md",[790],{"type":50,"value":791},"batch-modify",{"type":50,"value":793}," — Patterns for modifying many existing nodes at once (bulk style changes, repositioning, property updates)",{"type":44,"tag":221,"props":795,"children":796},{},[797,803,805,811,813,819],{"type":44,"tag":68,"props":798,"children":800},{"href":799},"references\u002Ffigjam-colors.md",[801],{"type":50,"value":802},"figjam-colors",{"type":50,"value":804}," — Canonical FigJam color palettes for every node type (sticky, section, connector, shape, label) plus the ",{"type":44,"tag":59,"props":806,"children":808},{"className":807},[],[809],{"type":50,"value":810},"hex\u002F255",{"type":50,"value":812}," notation rule and the ",{"type":44,"tag":59,"props":814,"children":816},{"className":815},[],[817],{"type":50,"value":818},"h()",{"type":50,"value":820}," helper",{"items":822,"total":982},[823,841,854,865,876,892,906,919,941,950,958,969],{"slug":824,"name":824,"fn":825,"description":826,"org":827,"tags":828,"stars":26,"repoUrl":27,"updatedAt":840},"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},[829,830,833,834,837],{"name":24,"slug":25,"type":15},{"name":831,"slug":832,"type":15},"Design System","design-system",{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15},"Frontend","frontend",{"name":838,"slug":839,"type":15},"UI Components","ui-components","2026-07-31T05:52:30.590302",{"slug":842,"name":842,"fn":843,"description":844,"org":845,"tags":846,"stars":26,"repoUrl":27,"updatedAt":853},"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},[847,848,849,852],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":850,"slug":851,"type":15},"Ideation","ideation",{"name":17,"slug":18,"type":15},"2026-04-06T18:11:46.464282",{"slug":855,"name":855,"fn":856,"description":857,"org":858,"tags":859,"stars":26,"repoUrl":27,"updatedAt":864},"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},[860,861,862,863],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15},{"name":838,"slug":839,"type":15},"2026-07-10T06:43:51.122606",{"slug":866,"name":866,"fn":867,"description":868,"org":869,"tags":870,"stars":26,"repoUrl":27,"updatedAt":875},"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},[871,872,873,874],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15},{"name":838,"slug":839,"type":15},"2026-04-06T18:11:48.952023",{"slug":877,"name":877,"fn":878,"description":879,"org":880,"tags":881,"stars":26,"repoUrl":27,"updatedAt":891},"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},[882,885,886,889,890],{"name":883,"slug":884,"type":15},"Architecture","architecture",{"name":24,"slug":25,"type":15},{"name":887,"slug":888,"type":15},"Diagrams","diagrams",{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-04-28T05:43:52.834484",{"slug":893,"name":893,"fn":894,"description":895,"org":896,"tags":897,"stars":26,"repoUrl":27,"updatedAt":905},"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},[898,899,900,903,904],{"name":24,"slug":25,"type":15},{"name":831,"slug":832,"type":15},{"name":901,"slug":902,"type":15},"Documentation","documentation",{"name":9,"slug":8,"type":15},{"name":838,"slug":839,"type":15},"2026-07-31T05:52:28.587088",{"slug":907,"name":907,"fn":908,"description":909,"org":910,"tags":911,"stars":26,"repoUrl":27,"updatedAt":918},"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},[912,915,916,917],{"name":913,"slug":914,"type":15},"Animation","animation",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15},"2026-06-25T07:13:13.645254",{"slug":920,"name":920,"fn":921,"description":922,"org":923,"tags":924,"stars":26,"repoUrl":27,"updatedAt":940},"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},[925,926,927,928,931,934,937],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15},{"name":929,"slug":930,"type":15},"iOS","ios",{"name":932,"slug":933,"type":15},"Mobile","mobile",{"name":935,"slug":936,"type":15},"SwiftUI","swiftui",{"name":938,"slug":939,"type":15},"Visual Design","visual-design","2026-06-09T07:16:28.204756",{"slug":73,"name":73,"fn":942,"description":943,"org":944,"tags":945,"stars":26,"repoUrl":27,"updatedAt":949},"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},[946,947,948],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-07-31T05:52:29.57808",{"slug":4,"name":4,"fn":5,"description":6,"org":951,"tags":952,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[953,954,955,956,957],{"name":13,"slug":14,"type":15},{"name":24,"slug":25,"type":15},{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"slug":959,"name":959,"fn":960,"description":961,"org":962,"tags":963,"stars":26,"repoUrl":27,"updatedAt":968},"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},[964,965,966,967],{"name":913,"slug":914,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-06-25T07:13:12.398176",{"slug":970,"name":970,"fn":971,"description":972,"org":973,"tags":974,"stars":26,"repoUrl":27,"updatedAt":981},"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},[975,976,977,978],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":979,"slug":980,"type":15},"Presentations","presentations","2026-05-14T06:09:42.171824",14,{"items":984,"total":982},[985,993,1000,1007,1014,1022,1030],{"slug":824,"name":824,"fn":825,"description":826,"org":986,"tags":987,"stars":26,"repoUrl":27,"updatedAt":840},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[988,989,990,991,992],{"name":24,"slug":25,"type":15},{"name":831,"slug":832,"type":15},{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15},{"name":838,"slug":839,"type":15},{"slug":842,"name":842,"fn":843,"description":844,"org":994,"tags":995,"stars":26,"repoUrl":27,"updatedAt":853},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[996,997,998,999],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":850,"slug":851,"type":15},{"name":17,"slug":18,"type":15},{"slug":855,"name":855,"fn":856,"description":857,"org":1001,"tags":1002,"stars":26,"repoUrl":27,"updatedAt":864},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1003,1004,1005,1006],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15},{"name":838,"slug":839,"type":15},{"slug":866,"name":866,"fn":867,"description":868,"org":1008,"tags":1009,"stars":26,"repoUrl":27,"updatedAt":875},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1010,1011,1012,1013],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15},{"name":838,"slug":839,"type":15},{"slug":877,"name":877,"fn":878,"description":879,"org":1015,"tags":1016,"stars":26,"repoUrl":27,"updatedAt":891},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1017,1018,1019,1020,1021],{"name":883,"slug":884,"type":15},{"name":24,"slug":25,"type":15},{"name":887,"slug":888,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"slug":893,"name":893,"fn":894,"description":895,"org":1023,"tags":1024,"stars":26,"repoUrl":27,"updatedAt":905},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1025,1026,1027,1028,1029],{"name":24,"slug":25,"type":15},{"name":831,"slug":832,"type":15},{"name":901,"slug":902,"type":15},{"name":9,"slug":8,"type":15},{"name":838,"slug":839,"type":15},{"slug":907,"name":907,"fn":908,"description":909,"org":1031,"tags":1032,"stars":26,"repoUrl":27,"updatedAt":918},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1033,1034,1035,1036],{"name":913,"slug":914,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":835,"slug":836,"type":15}]