Install
openclaw skills install kai-tw-figmaInteract with the Figma REST API to read files, export layers/components as images, and retrieve comments. Use when the user needs information from Figma designs or wants to export assets for development. Triggers include "read figma file", "export figma layer", or "check figma comments".
openclaw skills install kai-tw-figmaThis skill allows the agent to interact with Figma files via the REST API.
Requires a Figma Personal Access Token (PAT).
Environment Variable: FIGMA_TOKEN
To understand the contents of a Figma file (pages, frames, layers):
python scripts/figma_tool.py get-file <file_key>
To export specific layers/components as images:
python scripts/figma_tool.py export <file_key> --ids <id1>,<id2> --format <png|jpg|svg|pdf> --scale <1|2|3|4>
To list recent comments on a file:
python scripts/figma_tool.py get-comments <file_key>