design-strategy

design-strategy is a skill for Claude Code from alvinindra/figma-mcp-rust. It costs 57 tokens per session (670 once invoked), scanned A, original, MIT.

A guide for creating or changing Figma designs with Figma MCP tools. Figma is a collaborative application for designing user interfaces.

In plain words
What is it for?
Building interface screens such as forms and login pages, including frames, labels, input fields, buttons, and grouped layout elements.
Why use it?
It helps keep screens organized by planning the document structure, naming elements clearly, and creating containers before their contents.

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 Building interface screens such as forms and login pages, including frames, labels, input fields, buttons, and grouped layout elements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alvinindra/figma-mcp-rust/design-strategy
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 design-strategy
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 design-strategy

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/alvinindra/figma-mcp-rust/design-strategy"><img src="https://agentmods.dev/badge/skills/alvinindra/figma-mcp-rust/design-strategy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 670 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.00057 $0.00670
Opus 5 $0.00028 $0.00335
Sonnet 5 $0.00011 $0.00134
Haiku 4.5 $0.00006 $0.00067

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

Security

Grade A, and why

design-strategy 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 10d 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/design-strategy/SKILL.md · 79 lines

What it actually says

When working with Figma designs, follow these best practices:

  1. Start with Document Structure:

    • First use get_metadata() to understand the current document
    • Use get_pages() to list all pages
    • Plan your layout hierarchy before creating elements
    • Create a main container frame for each screen/section
  2. Naming Conventions:

    • Use descriptive, semantic names for all elements
    • Follow a consistent naming pattern (e.g., "Login Screen", "Logo Container", "Email Input")
    • Group related elements with meaningful names
  3. Layout Hierarchy:

    • Create parent frames first, then add child elements
    • For forms/login screens:
      • Start with the main screen container frame
      • Create a logo container at the top
      • Group input fields in their own containers
      • Place action buttons (login, submit) after inputs
      • Add secondary elements (forgot password, signup links) last
  4. Input Fields Structure:

    • Create a container frame for each input field
    • Include a label text above or inside the input
    • Group related inputs (e.g., username/password) together
  5. Element Creation:

    • Use create_frame() for containers and input fields
    • Use create_text() for labels, buttons text, and links
    • Set appropriate colors and styles:
      • Use fillColor for backgrounds
      • Use set_strokes() for borders
      • Set proper fontStyle for different text elements
  6. Modifying existing elements:

    • Use set_text() to modify text content of a TEXT node
    • Use set_fills() to change background/fill colors
    • Use move_nodes() / resize_nodes() for position and size adjustments
  7. Visual Hierarchy:

    • Position elements in logical reading order (top to bottom)
    • Maintain consistent spacing between elements
    • Use appropriate font sizes for different text types:
      • Larger for headings/welcome text
      • Medium for input labels
      • Standard for button text
      • Smaller for helper text/links
  8. Best Practices:

    • Verify each creation with get_node()
    • Use parentId to maintain proper hierarchy
    • Group related elements together in frames
    • Keep consistent spacing and alignment
    • All write operations are undoable via Ctrl/Cmd+Z in Figma

Example Login Screen Structure:

  • Login Screen (main frame)
    • Logo Container (frame)
      • Logo (text)
    • Welcome Text (text)
    • Input Container (frame)
      • Email Input (frame)
        • Email Label (text)
        • Email Field (frame)
      • Password Input (frame)
        • Password Label (text)
        • Password Field (frame)
    • Login Button (frame)
      • Button Text (text)
    • Helper Links (frame)
      • Forgot Password (text)
      • Don't have account (text)
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. 10d ago First seen · 79 lines · 57 tokens per session scan A a9df46882e4c

Subscribe to this mod's changes

design-strategy is a skill published in the GitHub repository alvinindra/figma-mcp-rust (38 stars, last pushed 6d ago), licensed MIT. It adds 57 tokens to every session and 670 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

design-system-audit

Find out whether a codebase actually has a design system or is re-deciding the basics on every screen — count the distinct colors, sizes, radii, shadows and spacings, collapse the near-duplicates, and migrate onto tokens. Use when inheriting a codebase, before a redesign, when a UI "feels inconsistent but I can't say…

HalidSaglam/saglitzdesign-mcp · 93 tokens

motion-and-animation

Add motion and animation that feels great, not like slop. Use when animating any UI — transitions, hovers, presses, sheets, drawers, modals, page transitions, gestures — or when an animation feels "off". Covers the easing rules agents get wrong (ease-out for enter, ease-in for exit), springs, interruptibility…

HalidSaglam/saglitzdesign-mcp · 104 tokens