bulk-rename

bulk-rename is a skill for Claude Code from alvinindra/figma-mcp-rust. It costs 62 tokens per session (639 once invoked), scanned A, original, MIT.

A workflow for replacing automatically assigned Figma layer names, such as “Frame 123” or “Rectangle 45,” with consistent descriptive names.

In plain words
What is it for?
It helps rename layers across a page, frame, or selection using names for screens, sections, components, containers, text, and icons, with a preview before changes are made.
Why use it?
It makes a design file easier to navigate and maintain without changing how anything looks.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the figma-mcp-rust plugin — 13 skills, 1 MCP server shipped together

Good fit It helps rename layers across a page, frame, or selection using names for screens, sections, components, containers, text, and icons, with a preview before changes are made.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alvinindra/figma-mcp-rust/bulk-rename
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add alvinindra/figma-mcp-rust --skill bulk-rename
Clone the repo
git clone --depth 1 https://github.com/alvinindra/figma-mcp-rust

Made for: Claude Code.

Or install figma-mcp-rust, the plugin that ships this one along with the rest of its 13 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bulk-rename

README.md
[![agentmods](https://agentmods.dev/badge/skills/alvinindra/figma-mcp-rust/bulk-rename/github.svg)](https://agentmods.dev/skills/alvinindra/figma-mcp-rust/bulk-rename)
Your own site
<a href="https://agentmods.dev/skills/alvinindra/figma-mcp-rust/bulk-rename"><img src="https://agentmods.dev/badge/skills/alvinindra/figma-mcp-rust/bulk-rename/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bulk-rename

Your own site · 80×15
<a href="https://agentmods.dev/skills/alvinindra/figma-mcp-rust/bulk-rename"><img src="https://agentmods.dev/badge/skills/alvinindra/figma-mcp-rust/bulk-rename.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 639 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.00639
Opus 5 $0.00031 $0.00319
Sonnet 5 $0.00012 $0.00128
Haiku 4.5 $0.00006 $0.00064

Measured 11d ago against content hash 65e3cac4a424, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

bulk-rename scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/bulk-rename/SKILL.md · 59 lines

How it starts

The opening of the file, as written. The whole thing — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Bulk Rename Strategy

Systematically rename nodes to follow a consistent naming convention without moving or modifying any visual properties.

Naming Convention (BEM-style, adapt as needed)

  • Screens / pages: "ScreenName" (PascalCase)
  • Section frames: "Section/Name"
  • Component instances: "ComponentName" (match main component name)
  • Containers: "ComponentName/Container"
  • Content groups: "ComponentName/Content"
  • Interactive elements: "ComponentName/ActionName" (e.g. "Card/CTAButton")
  • Text nodes: "Label", "Title", "Body", "Caption"
  • Icon wrappers: "Icon/IconName"
  • Auto-generated Figma names to avoid: "Frame 123", "Rectangle 45", "Group 6"

Steps

  1. Understand the scope Ask the user: rename the entire page, a specific frame, or just selected nodes?

    • Entire page: use get_document() to get the root node ID, then scan_nodes_by_types().
    • Specific frame: use get_node(nodeId) to inspect it first.
    • Selection: use get_selection().
  2. Scan target nodes Call scan_nodes_by_types(nodeId, types=["FRAME","GROUP","INSTANCE","TEXT","RECTANGLE","ELLIPSE","VECTOR"]) to get a flat list of all nodes in scope.

  3. Identify nodes needing rename Flag nodes whose names match Figma's auto-generated patterns:

    • "Frame \d+", "Rectangle \d+", "Group \d+", "Ellipse \d+", "Vector \d+", "Component \d+"
    • Any name the user considers non-descriptive.
  4. Propose names For each flagged node, derive a new name from:

    • Its node type and content (TEXT nodes: use their text content as label).
    • Its position in the hierarchy (child of "Card" frame: "Card/...").
    • Its visual role (if it contains only an icon: "Icon/...").
    • For INSTANCE nodes: use the mainComponent name. Show a preview table to the user before applying: | Node ID | Current Name | Proposed Name |
  5. Apply renames (after user confirmation) Call rename_node(nodeId, name) for each node. Process in batches; do not wait for user confirmation between individual renames once the full plan is approved.

Read the full file on GitHub · 59 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 59 lines · 62 tokens per session scan A 65e3cac4a424

Subscribe to this mod's changes

bulk-rename is a skill published in the GitHub repository alvinindra/figma-mcp-rust (38 stars, last pushed 6d ago), licensed MIT. It adds 62 tokens to every session and 639 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

clean-interface-design

Design clean, calm, uncluttered interfaces that don't read as templated AI output. Use when building or restyling any UI (web, iOS, Android, macOS) and it needs visual hierarchy, restraint, spacing discipline, one clear primary action, and a cohesive look. Covers accent color, whitespace, corner radius, type scale…

HalidSaglam/saglitzdesign-mcp · 95 tokens

landing-page-conversion

Build or improve landing pages and marketing sites that convert, not just look good. Use when writing a hero, structuring a page, choosing a CTA, adding social proof, or diagnosing why a page isn't converting. Covers positioning, copy-first workflow, the above-the-fold contract, page narrative, CTAs, trust, and…

HalidSaglam/saglitzdesign-mcp · 86 tokens

ship-quality-gate

Run the deterministic auditors over a real project before it ships — design drift, security headers, generated-default tells, SEO/GEO signals, delivery signals, Apple and Android project configuration — and read the results correctly, disclosure list included. Use when someone asks "audit this", "is this ready to…

HalidSaglam/saglitzdesign-mcp · 86 tokens

apple-platform-design

Design iOS, iPadOS, and macOS apps that feel native, in the Liquid Glass era. Use when building or reviewing Apple-platform UI — navigation, controls, sheets, materials, typography, haptics — or deciding what must change when porting from web/Android. Covers Apple's HIG, the Liquid Glass design language (iOS 26 /…

HalidSaglam/saglitzdesign-mcp · 95 tokens

saglitzdesign

Design, redesign, build, restyle, improve, critique, review, audit, simplify, polish, or animate a user interface — the front door into SaglitzDesign's eight design skills, for whichever one the work actually needs. Covers landing pages, marketing sites, dashboards, app screens, components, forms, onboarding, empty…

HalidSaglam/saglitzdesign-mcp · 204 tokens

design-review

Critique a UI (screenshot, live page, or code) like a rigorous senior designer — grounded, reproducible, element-citing, and ranked by severity. Use when someone asks "review this design", "what's wrong with this screen", or wants feedback on a mockup/site/app. Avoids the failure modes of typical AI critique…

HalidSaglam/saglitzdesign-mcp · 92 tokens