figma-performance

figma-performance is a cursor rule for Cursor from hoshikitsunoda/figma-plugins-vibe-coding-template. It costs 0 tokens per session (430 once invoked), scanned A, original, MIT.

A set of coding rules for making Figma plugins process large design documents more efficiently. It covers faster searches, avoiding unnecessary hidden content, and yielding during long operations so the interface can respond.

In plain words
What is it for?
Use it when writing plugin code that searches many nodes, reads node properties repeatedly, processes large selections, or loads pages only when needed.
Why use it?
Large Figma files can take longer to search or process and may make the interface feel frozen.

Cursor rule for Cursor

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.

agentmods
npx agentmods add rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-performance
Clone the repo
git clone --depth 1 https://github.com/hoshikitsunoda/figma-plugins-vibe-coding-template

Made for: Cursor.

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 figma-performance

README.md
[![agentmods](https://agentmods.dev/badge/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-performance.svg)](https://agentmods.dev/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-performance)
Your own site
<a href="https://agentmods.dev/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-performance"><img src="https://agentmods.dev/badge/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-performance.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 430 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00430
Opus 5 $0.00000 $0.00215
Sonnet 5 $0.00000 $0.00086
Haiku 4.5 $0.00000 $0.00043

Measured 5d ago against content hash 24e59410aa93, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

figma-performance 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 5d 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.

.cursor/rules/figma-performance.mdc · 86 lines

What it actually says

Figma Performance Patterns

Handling large documents efficiently in the Plugin API.

Skip Invisible Instance Children

Speed up traversal by skipping hidden nested instances:

// ✓ Set before traversing large documents
figma.skipInvisibleInstanceChildren = true

Use Built-in Find Methods

Figma's find methods are optimized internally:

// ✓ Preferred — uses internal optimization
const frames = page.findAll((n) => n.type === 'FRAME')
const firstText = page.findOne((n) => n.type === 'TEXT')

// ❌ Avoid manual recursion when possible
function findAllManual(node) { ... }

Destructure Repeated Access

Avoid multiple property lookups on the same object:

// ✓ Destructure once
const { x, y, width, height } = node.absoluteBoundingBox

// ❌ Repeated access
const x = node.absoluteBoundingBox.x
const y = node.absoluteBoundingBox.y

Batch with Yielding

For very large operations, yield to prevent UI freeze:

async function processNodes(nodes: readonly SceneNode[]) {
  for (const node of nodes) {
    processNode(node)
    // Yield to main thread periodically
    await new Promise((r) => setTimeout(r, 0))
  }
}

Load Pages On Demand

Pages are loaded dynamically — only access what you need:

// ✓ Work with current page when possible
const nodes = figma.currentPage.findAll(...)

// Loading other pages is async
await figma.loadAllPagesAsync()
for (const page of figma.root.children) {
  // Now all pages are accessible
}

Avoid Large Payloads

When sending data to UI, serialize only what's needed:

// ✓ Send minimal data
figma.ui.postMessage({
  type: 'nodes',
  data: nodes.map((n) => ({ id: n.id, name: n.name })),
})

// ❌ Don't serialize entire node trees unnecessarily
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. 5d ago First seen · 86 lines · 0 tokens per session scan A 24e59410aa93

Subscribe to this mod's changes

figma-performance is a cursor rule published in the GitHub repository hoshikitsunoda/figma-plugins-vibe-coding-template (21 stars, last pushed 8mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 430 tokens. 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.