NutriSport: Skill for Claude Code

.claude/skills/figma-mcp-budget/SKILL.md

figma-mcp-budget is a skill for Claude Code from satanyakiv/NutriSport. It costs 156 tokens per session (1,399 once invoked), scanned A, original, MIT.

Rules for using Figma’s developer tools within the limits of a paid Figma plan. They choose an efficient request type, restrict requests to the needed design area, and avoid retrying failed rate-limited requests.

In plain words
What is it for?
Use them before a series of Figma requests, when loading a Figma design for implementation, or after receiving a rate-limit error.
Why use it?
They reduce the chance of exhausting the account’s request allowance or triggering rate limits.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

This is satanyakiv/NutriSport's own configuration. It tells Claude Code how to work on NutriSport itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything NutriSport configures →

Reuse

Borrowing it

Nothing to install: this file belongs to satanyakiv/NutriSport. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/satanyakiv/NutriSport/main/.claude/skills/figma-mcp-budget/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/satanyakiv/NutriSport

Made for: Claude Code.

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-mcp-budget

README.md
[![agentmods](https://agentmods.dev/badge/skills/satanyakiv/nutrisport/figma-mcp-budget/github.svg)](https://agentmods.dev/skills/satanyakiv/nutrisport/figma-mcp-budget)
Your own site
<a href="https://agentmods.dev/skills/satanyakiv/nutrisport/figma-mcp-budget"><img src="https://agentmods.dev/badge/skills/satanyakiv/nutrisport/figma-mcp-budget/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 figma-mcp-budget

Your own site · 80×15
<a href="https://agentmods.dev/skills/satanyakiv/nutrisport/figma-mcp-budget"><img src="https://agentmods.dev/badge/skills/satanyakiv/nutrisport/figma-mcp-budget.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 156 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,399 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.
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.00156 $0.01399
Opus 5 $0.00078 $0.00700
Sonnet 5 $0.00031 $0.00280
Haiku 4.5 $0.00016 $0.00140

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

Security

Grade A, and why

figma-mcp-budget 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 12d 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.

.claude/skills/figma-mcp-budget/SKILL.md · 81 lines

How it starts

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

Figma MCP Budget — discipline rules

Context

Figma Pro plan ($20/month) caps: 10 calls/min (rolling 60s) and 200 calls/day (UTC rollover). Personal-account caps; team plan does not help. One runaway loop on a missing nodeId burns the daily budget in 5 minutes — see references/failure-modes.md. This skill is orthogonal to figma-handoff: handoff defines WHAT to call, this defines HOW to call safely.

When to activate

  • Before any series of ≥3 Figma MCP calls in a turn
  • Before bootstrap operations (e.g. enumerating pages of a Figma file)
  • At the start of feature Phase A.1 (regardless of screens[] count)
  • When user says "Figma бюджет вичерпано" / "rate limit hit" / "429"
  • Whenever you load figma-handoff (it cross-references this skill in Step 0)

Rules (core, inline)

1. Prefer get_design_context for scope-bound nodes

get_design_context(fileKey, nodeId) returns code + screenshot + metadata in one call — cheaper than separate get_screenshot + get_metadata + get_variable_defs chain. Use when you have a specific nodeId.

2. get_metadata only as fallback

Use get_metadata ONLY when (a) get_design_context returned a truncation error and you need to drill into children, or (b) you're enumerating a known file as part of a one-time bootstrap (with hard cap, see references/extended-rules.md §10). Don't use it for exploration ("let me see what's in this page") — it times out on large pages and is wasteful when get_design_context would do.

3. Always pass nodeId

Never call get_design_context(fileKey) or get_metadata(fileKey) without a nodeId. Only exception: bootstrap pass against per-page nodeIds collected from a saved tree (e.g. .claude/figma/SCREEN_FRAME_MAP.md Phase 1 dump).

4. whoami once per session

whoami is exempt from rate limit — call it once per session for seat-type verification (Pro vs Org) and to confirm authenticated user. Do not re-call within the same conversation.

Read the full file on GitHub · 81 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 81 lines · 0 tokens per session scan A d5c03f9e79c6

Subscribe to this mod's changes

figma-mcp-budget is a skill published in the GitHub repository satanyakiv/NutriSport (11 stars, last pushed 3mo ago), licensed MIT. It adds 156 tokens to every session and 1,399 once invoked, about $0.0008 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

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ultragoal with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 52 tokens

accessibility

Consolidated accessibility skill entrypoint for WCAG 2.2, ARIA Authoring Practices, cognitive accessibility, Section 508, EN 301 549, design intent verification, and the Accessibility Planner workflow.

microsoft/hve-core · 47 tokens

make-resume

A Chinese-language tool for creating editable HTML resumes that can be changed in a browser and printed to PDF. It uses available resume templates when they are installed and otherwise provides a simpler fallback.

Hisn00w/ASu-skills · 86 tokens