openai/skills

figma-use

**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/edit/delete nodes, set up variables or tokens, build components and variants, modify auto-layout or fills, bind variables to propertie

80CollectingReads filesRuns scripts
See how to use itView GitHub source
npx skills add https://github.com/openai/skills --skill "skills/.curated/figma-use"
Automated source guideDocumentationDeep source

Source checked Jul 28, 2026·Refresh due Oct 26, 2026

Reorganized from the pinned upstream SKILL.md

Source-grounded documentation guide: figma-use

Use usefigma MCP to execute JavaScript in Figma files via the Plugin API. All detailed reference docs live in references/.

npx skills add https://github.com/openai/skills --skill "skills/.curated/figma-use"
Check the pinned source

The pinned source contains enough sections and task detail for a source-grounded deep guide; automated content is still not an independent test.

2,333 source words · 19 usable sections

Documentation outputs

  • Returning IDs (CRITICAL): Every script that creates or mutates canvas nodes MUST return all affected node IDs — e.g. return { createdNodeIds: [...], mutatedNodeIds: [...] }. This is a hard requirement, not optional.
  • Progress reporting: return { createdNodeIds: [...], count: 5, errors: [] }
  • Error info: Thrown errors are automatically captured and returned — just let them propagate or throw explicitly.

Documentation workflow

Read figma-use through these 5 source sections

Sections are extracted automatically from the pinned SKILL.md and link back to the source.

01

5. Incremental Workflow (How to Avoid Bugs)

The most common cause of bugs is trying to do too much in a single usefigma call. Work in small steps and validate after each one.

SKILL.md · 5. Incremental Workflow (How to Avoid Bugs)
Inspect first. Before creating anything, run a read-only usefigma to discover what already exists in the file — pages, components, variables, naming conventions. Match what's there.Do one thing per call. Create variables in one call, create components in the next, compose layouts in another. Don't try to build an entire screen in one script.Return IDs from every call. Always return created node IDs, variable IDs, collection IDs as objects (e.g. return { createdNodeIds: [...] }). You'll need these as inputs to subsequent calls.
02

Suggested step order for complex tasks

Review the “Suggested step order for complex tasks” section in the pinned source before continuing.

SKILL.md · Suggested step order for complex tasks
Review and apply the “Suggested step order for complex tasks” source section.
03

What to validate at each step

Review the “What to validate at each step” section in the pinned source before continuing.

SKILL.md · What to validate at each step
Review and apply the “What to validate at each step” source section.
04

1. Critical Rules

1. Use return to send data back. The return value is JSON-serialized automatically (objects, arrays, strings, numbers). Do NOT call figma.closePlugin() or wrap code in an async IIFE — this is handled for you. 2. Write plain JavaScript with top-level await and return. Code is aut…

SKILL.md · 1. Critical Rules
Use return to send data back. The return value is JSON-serialized automatically (objects, arrays, strings, numbers). Do NOT call figma.closePlugin() or wrap code in an async IIFE — this is handled for you.Write plain JavaScript with top-level await and return. Code is automatically wrapped in an async context. Do NOT wrap in (async () = { ... })().figma.notify() throws "not implemented" — never use it
05

2. Page Rules (Critical)

Page context resets between usefigma calls — figma.currentPage starts on the first page each time.

SKILL.md · 2. Page Rules (Critical)
Page context resets between usefigma calls — figma.currentPage starts on the first page each time.Use await figma.setCurrentPageAsync(page) to switch pages and load their content. The sync setter figma.currentPage = page throws an error in usefigma runtimes.figma.currentPage resets to the first page at the start of each usefigma call. If your workflow spans multiple calls and targets a non-default page, call await figma.setCurrentPageAsync(page) at the start of each invoca…

SkillSignal prompt templates

Provide the task, context, and acceptance criteria

These prompts were written by SkillSignal from the source structure; they are not upstream text.

Source-grounded prompt

Use for a documentation task while explicitly checking the source sections.

Use figma-use for this documentation task: [task]. Inputs and constraints: [details]. Work through these pinned SKILL.md sections: “5. Incremental Workflow (How to Avoid Bugs)”, “Suggested step order for complex tasks”, “What to validate at each step”, “1. Critical Rules”, “2. Page Rules (Critical)”. Cite the concrete requirements that shape each step, do not invent capabilities absent from the source, and verify the result against: [acceptance criteria].

Documentation checklist

Verify each item before delivery

The source section “5. Incremental Workflow (How to Avoid Bugs)” has been checked.

The source section “Suggested step order for complex tasks” has been checked.

The source section “What to validate at each step” has been checked.

The source section “1. Critical Rules” has been checked.

Source output checked: Returning IDs (CRITICAL): Every script that creates or mutates canvas nodes MUST return all affected node IDs — e.g. return { createdNodeIds: [...], mutatedNodeIds: [...] }. This is a hard requirement, not optional.

Source output checked: Progress reporting: return { createdNodeIds: [...], count: 5, errors: [] }

Static permission evidence

Inspect the exact source lines that triggered a signal

These are source excerpts matched by deterministic rules, not findings of malicious behavior, safety, or actual execution.

Choose a different workflow

When another Skill is the better fit

brand-landingpage

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

A separate implementation from wshobson/agents; compare its source, maintenance signals, and permission requirements.

Open source detail

screen-recording

Create annotated animated GIF demos and screen recordings for pull requests and documentation. Covers frame capture, timing, imageio-based GIF creation, and per-frame annotation workflows.

A separate implementation from github/awesome-copilot; compare its source, maintenance signals, and permission requirements.

Open source detail

chatgpt-apps

Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.

A separate implementation from openai/skills; compare its source, maintenance signals, and permission requirements.

Open source detail

FAQ

What does the figma-use source document cover?

Use usefigma MCP to execute JavaScript in Figma files via the Plugin API. All detailed reference docs live in references/.

How do I install figma-use?

The source record exposes this install command: npx skills add https://github.com/openai/skills --skill "skills/.curated/figma-use". Inspect the command and pinned source before running it.

Which permission-related actions were detected?

Static rules flagged read-files, exec-script in the source; the page lists the matching lines and excerpts.

Repository stars
24,265
Repository forks
1,644
Quality
80/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

80/100
Documentation30/30
Specificity20/25
Maintenance18/20
Trust signals12/25

Compare before choosing

Related Agent Skills and source variants

These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.

brand-landingpage by wshobson

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

screen-recording by github

Create annotated animated GIF demos and screen recordings for pull requests and documentation. Covers frame capture, timing, imageio-based GIF creation, and per-frame annotation workflows.

chatgpt-apps by openai

Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.

figma-use by nexu-io

Run Figma Plugin API scripts for canvas writes, inspections, variables, and design-system work. Prerequisite for every other Figma skill in this catalogue.

esm by k-dense-ai

Use when working directly with the `esm` Python SDK, ESM3 or ESMC model IDs, Forge/Biohub inference clients, or ESMFold2 folding workflows.

View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 11 min

use_figma — Figma Plugin API Skill

Use use_figma MCP to execute JavaScript in Figma files via the Plugin API. All detailed reference docs live in references/.

Always pass skillNames: "figma-use" when calling use_figma. This is a logging parameter used to track skill usage — it does not affect execution.

If the task involves building or updating a full page, screen, or multi-section layout in Figma from code, also load figma-generate-design. It provides the workflow for discovering design system components via search_design_system, importing them, and assembling screens incrementally. Both skills work together: this one for the API rules, that one for the screen-building workflow.

Before anything, load plugin-api-standalone.index.md to understand what is possible. When you are asked to write plugin API code, use this context to grep plugin-api-standalone.d.ts for relevant types, methods, and properties. This is the definitive source of truth for the API surface. It is a large typings file, so do not load it all at once, grep for relevant sections as needed.

IMPORTANT: Whenever you work with design systems, start with working-with-design-systems/wwds.md to understand the key concepts, processes, and guidelines for working with design systems in Figma. Then load the more specific references for components, variables, text styles, and effect styles as needed.

1. Critical Rules

  1. Use return to send data back. The return value is JSON-serialized automatically (objects, arrays, strings, numbers). Do NOT call figma.closePlugin() or wrap code in an async IIFE — this is handled for you.
  2. Write plain JavaScript with top-level await and return. Code is automatically wrapped in an async context. Do NOT wrap in (async () => { ... })().
  3. figma.notify() throws "not implemented" — never use it 3a. getPluginData() / setPluginData() are not supported in use_figma — do not use them. Use getSharedPluginData() / setSharedPluginData() instead (these ARE supported), or track node IDs by returning them and passing them to subsequent calls.
  4. console.log() is NOT returned — use return for output
  5. Work incrementally in small steps. Break large operations into multiple use_figma calls. Validate after each step. This is the single most important practice for avoiding bugs.
  6. Colors are 0–1 range (not 0–255): {r: 1, g: 0, b: 0} = red
  7. Fills/strokes are read-only arrays — clone, modify, reassign
  8. Font MUST be loaded before any text operation: await figma.loadFontAsync({family, style})
  9. Pages load incrementally — use await figma.setCurrentPageAsync(page) to switch pages and load their content (see Page Rules below)
  10. setBoundVariableForPaint returns a NEW paint — must capture and reassign
  11. createVariable accepts collection object or ID string (object preferred)
  12. layoutSizingHorizontal/Vertical = 'FILL' MUST be set AFTER parent.appendChild(child) — setting before append throws. Same applies to 'HUG' on non-auto-layout nodes.
  13. Position new top-level nodes away from (0,0). Nodes appended directly to the page default to (0,0). Scan figma.currentPage.children to find a clear position (e.g., to the right of the rightmost node). This only applies to page-level nodes — nodes nested inside other frames or auto-layout containers are positioned by their parent. See Gotchas.
  14. On use_figma error, STOP. Do NOT immediately retry. Failed scripts are atomic — if a script errors, it is not executed at all and no changes are made to the file. Read the error message carefully, fix the script, then retry. See Error Recovery.
  15. MUST return ALL created/mutated node IDs. Whenever a script creates new nodes or mutates existing ones on the canvas, collect every affected node ID and return them in a structured object (e.g. return { createdNodeIds: [...], mutatedNodeIds: [...] }). This is essential for subsequent calls to reference, validate, or clean up those nodes.
  16. Always set variable.scopes explicitly when creating variables. The default ALL_SCOPES pollutes every property picker — almost never what you want. Use specific scopes like ["FRAME_FILL", "SHAPE_FILL"] for backgrounds, ["TEXT_FILL"] for text colors, ["GAP"] for spacing, etc. See variable-patterns.md for the full list.
  17. await every Promise. Never leave a Promise unawaited — unawaited async calls (e.g. figma.loadFontAsync(...) without await, or figma.setCurrentPageAsync(page) without await) will fire-and-forget, causing silent failures or race conditions. The script may return before the async operation completes, leading to missing data or half-applied changes.

For detailed WRONG/CORRECT examples of each rule, see Gotchas & Common Mistakes.

2. Page Rules (Critical)

Page context resets between use_figma callsfigma.currentPage starts on the first page each time.

Switching pages

Use await figma.setCurrentPageAsync(page) to switch pages and load their content. The sync setter figma.currentPage = page throws an error in use_figma runtimes.

// Switch to a specific page (loads its content)
const targetPage = figma.root.children.find((p) => p.name === "My Page");
await figma.setCurrentPageAsync(targetPage);
// targetPage.children is now populated

// Iterate over all pages
for (const page of figma.root.children) {
  await figma.setCurrentPageAsync(page);
  // page.children is now loaded — read or modify them here
}

Across script runs

figma.currentPage resets to the first page at the start of each use_figma call. If your workflow spans multiple calls and targets a non-default page, call await figma.setCurrentPageAsync(page) at the start of each invocation.

You can call use_figma multiple times to incrementally build on the file state, or to retrieve information before writing another script. For example, write a script to get metadata about existing nodes, return that data, then use it in a subsequent script to modify those nodes.

3. return Is Your Output Channel

The agent sees ONLY the value you return. Everything else is invisible.

  • Returning IDs (CRITICAL): Every script that creates or mutates canvas nodes MUST return all affected node IDs — e.g. return { createdNodeIds: [...], mutatedNodeIds: [...] }. This is a hard requirement, not optional.
  • Progress reporting: return { createdNodeIds: [...], count: 5, errors: [] }
  • Error info: Thrown errors are automatically captured and returned — just let them propagate or throw explicitly.
  • console.log() output is never returned to the agent
  • Always return actionable data (IDs, counts, status) so subsequent calls can reference created objects

4. Editor Mode

use_figma works in design mode (editorType "figma", the default). FigJam ("figjam") has a different set of available node types — most design nodes are blocked there.

Available in design mode: Rectangle, Frame, Component, Text, Ellipse, Star, Line, Vector, Polygon, BooleanOperation, Slice, Page, Section, TextPath.

Blocked in design mode: Sticky, Connector, ShapeWithText, CodeBlock, Slide, SlideRow, Webpage.

5. Incremental Workflow (How to Avoid Bugs)

The most common cause of bugs is trying to do too much in a single use_figma call. Work in small steps and validate after each one.

The pattern

  1. Inspect first. Before creating anything, run a read-only use_figma to discover what already exists in the file — pages, components, variables, naming conventions. Match what's there.
  2. Do one thing per call. Create variables in one call, create components in the next, compose layouts in another. Don't try to build an entire screen in one script.
  3. Return IDs from every call. Always return created node IDs, variable IDs, collection IDs as objects (e.g. return { createdNodeIds: [...] }). You'll need these as inputs to subsequent calls.
  4. Validate after each step. Use get_metadata to verify structure (counts, names, hierarchy, positions). Use get_screenshot after major milestones to catch visual issues.
  5. Fix before moving on. If validation reveals a problem, fix it before proceeding to the next step. Don't build on a broken foundation.

Suggested step order for complex tasks

Step 1: Inspect file — discover existing pages, components, variables, conventions
Step 2: Create tokens/variables (if needed)
       → validate with get_metadata
Step 3: Create individual components
       → validate with get_metadata + get_screenshot
Step 4: Compose layouts from component instances
       → validate with get_screenshot
Step 5: Final verification

What to validate at each step

After...Check with get_metadataCheck with get_screenshot
Creating variablesCollection count, variable count, mode names
Creating componentsChild count, variant names, property definitionsVariants visible, not collapsed, grid readable
Binding variablesNode properties reflect bindingsColors/tokens resolved correctly
Composing layoutsInstance nodes have mainComponent, hierarchy correctNo cropped/clipped text, no overlapping elements, correct spacing

6. Error Recovery & Self-Correction

use_figma is atomic — failed scripts do not execute. If a script errors, no changes are made to the file. The file remains in the same state as before the call. This means there are no partial nodes, no orphaned elements from the failed script, and retrying after a fix is safe.

When use_figma returns an error

  1. STOP. Do not immediately fix the code and retry.
  2. Read the error message carefully. Understand exactly what went wrong — wrong API usage, missing font, invalid property value, etc.
  3. If the error is unclear, call get_metadata or get_screenshot to understand the current file state.
  4. Fix the script based on the error message.
  5. Retry the corrected script.

Common self-correction patterns

Error messageLikely causeHow to fix
"not implemented"Used figma.notify()Remove it — use return for output
"node must be an auto-layout frame..."Set FILL/HUG before appending to auto-layout parentMove appendChild before layoutSizingX = 'FILL'
"Setting figma.currentPage is not supported"Used sync page setterUse await figma.setCurrentPageAsync(page)
Property value out of rangeColor channel > 1 (used 0–255 instead of 0–1)Divide by 255
"Cannot read properties of null"Node doesn't exist (wrong ID, wrong page)Check page context, verify ID
Script hangs / no responseInfinite loop or unresolved promiseCheck for while(true) or missing await; ensure code terminates
"The node with id X does not exist"Parent instance was implicitly detached by a child detachInstance(), changing IDsRe-discover nodes by traversal from a stable (non-instance) parent frame

When the script succeeds but the result looks wrong

  1. Call get_metadata to check structural correctness (hierarchy, counts, positions).
  2. Call get_screenshot to check visual correctness. Look closely for cropped/clipped text (line heights cutting off content) and overlapping elements — these are common and easy to miss.
  3. Identify the discrepancy — is it structural (wrong hierarchy, missing nodes) or visual (wrong colors, broken layout, clipped content)?
  4. Write a targeted fix script that modifies only the broken parts — don't recreate everything.

For the full validation workflow, see Validation & Error Recovery.

7. Pre-Flight Checklist

Before submitting ANY use_figma call, verify:

  • Code uses return to send data back (NOT figma.closePlugin())
  • Code is NOT wrapped in an async IIFE (auto-wrapped for you)
  • return value includes structured data with actionable info (IDs, counts)
  • NO usage of figma.notify() anywhere
  • NO usage of console.log() as output (use return instead)
  • All colors use 0–1 range (not 0–255)
  • Fills/strokes are reassigned as new arrays (not mutated in place)
  • Page switches use await figma.setCurrentPageAsync(page) (sync setter throws)
  • layoutSizingVertical/Horizontal = 'FILL' is set AFTER parent.appendChild(child)
  • loadFontAsync() called BEFORE any text property changes
  • lineHeight/letterSpacing use {unit, value} format (not bare numbers)
  • resize() is called BEFORE setting sizing modes (resize resets them to FIXED)
  • For multi-step workflows: IDs from previous calls are passed as string literals (not variables)
  • New top-level nodes are positioned away from (0,0) to avoid overlapping existing content
  • ALL created/mutated node IDs are collected and included in the return value
  • Every async call (loadFontAsync, setCurrentPageAsync, importComponentByKeyAsync, etc.) is awaited — no fire-and-forget Promises

8. Discover Conventions Before Creating

Always inspect the Figma file before creating anything. Different files use different naming conventions, variable structures, and component patterns. Your code should match what's already there, not impose new conventions.

When in doubt about any convention (naming, scoping, structure), check the Figma file first, then the user's codebase. Only fall back to common patterns when neither exists.

Quick inspection scripts

List all pages and top-level nodes:

const pages = figma.root.children.map(p => `${p.name} id=${p.id} children=${p.children.length}`);
return pages.join('\n');

List existing components across all pages:

const results = [];
for (const page of figma.root.children) {
  await figma.setCurrentPageAsync(page);
  page.findAll(n => {
    if (n.type === 'COMPONENT' || n.type === 'COMPONENT_SET')
      results.push(`[${page.name}] ${n.name} (${n.type}) id=${n.id}`);
    return false;
  });
}
return results.join('\n');

List existing variable collections and their conventions:

const collections = await figma.variables.getLocalVariableCollectionsAsync();
const results = collections.map(c => ({
  name: c.name, id: c.id,
  varCount: c.variableIds.length,
  modes: c.modes.map(m => m.name)
}));
return results;

9. Reference Docs

Load these as needed based on what your task involves:

DocWhen to loadWhat it covers
gotchas.mdBefore any use_figmaEvery known pitfall with WRONG/CORRECT code examples
common-patterns.mdNeed working code examplesScript scaffolds: shapes, text, auto-layout, variables, components, multi-step workflows
plugin-api-patterns.mdCreating/editing nodesFills, strokes, Auto Layout, effects, grouping, cloning, styles
api-reference.mdNeed exact API surfaceNode creation, variables API, core properties, what works and what doesn't
validation-and-recovery.mdMulti-step writes or error recoveryget_metadata vs get_screenshot workflow, mandatory error recovery steps
component-patterns.mdCreating components/variantscombineAsVariants, component properties, INSTANCE_SWAP, variant layout, discovering existing components, metadata traversal
variable-patterns.mdCreating/binding variablesCollections, modes, scopes, aliasing, binding patterns, discovering existing variables
text-style-patterns.mdCreating/applying text stylesType ramps, font probing, listing styles, applying styles to nodes
effect-style-patterns.mdCreating/applying effect stylesDrop shadows, listing styles, applying styles to nodes
plugin-api-standalone.index.mdNeed to understand the full API surfaceIndex of all types, methods, and properties in the Plugin API
plugin-api-standalone.d.tsNeed exact type signaturesFull typings file — grep for specific symbols, don't load all at once

10. Snippet examples

You will see snippets throughout documentation here. These snippets contain useful plugin API code that can be repurposed. Use them as is, or as starter code as you go. If there are key concepts that are best documented as generic snippets, call them out and write to disk so you can reuse in the future.

Source repo
openai/skills
Skill path
skills/.curated/figma-use/SKILL.md
Commit SHA
49f948faa925
Repository license
Data collected