figma-manage-variableslisted
Install: claude install-skill whiskfernlowdensitylipoprotein154/figma-console-mcp-skills
# figma-manage-variables — variable / collection / mode CRUD
Incremental, surgical edits to a Figma variable system: create one or many, update values in bulk,
rename, set scopes and code syntax, add/rename modes, and delete. All via `use_figma`, on any plan.
## Skill boundaries
- **`use_figma` rules** — load the official **`figma-use`** skill first; it is the full Figma Plugin API reference. Essentials these scripts rely on: plain JS with top-level `await` + `return` (no IIFE, no `figma.closePlugin()`; `console.log` is not returned), inputs inlined as `const` at the top of each script, colors in 0–1 range, load fonts before any text op, `await figma.getNodeByIdAsync(...)`, and **atomic errors** (a failed script applies nothing — read the error, fix, retry).
- From-scratch bootstrap → `figma-setup-design-tokens`. Code sync → `figma-import-tokens` /
`figma-export-tokens`.
## Workflow
1. **Identify targets.** Most ops need IDs. Get `variableId`/`modeId`/`collectionId` from the
`figma-export-tokens` read script or `get_variable_defs`. Collections can also be looked up by
name inside the script.
2. **Pick the operation** from [references/variable-ops.md](references/variable-ops.md) — it has a
complete, copy-paste `use_figma` snippet for each: create collection, create variable, batch
create, batch update, rename, set scopes, add/rename mode, delete.
3. **Run** via `use_figma` (`skillNames: "figma-manage-variables"`). For large value updates use
[`scripts/batc