senlindesign/claude2figma · Archived

component-rules

Triggers when building any UI element in Figma — 'create a card', 'build a nav', 'add a section', 'make a component'.

First seen May 18, 2026

Installation

$ npx skills add senlindesign/claude2figma --skill component-rules

Summary

  • Triggers when building any UI element in Figma — 'create a card', 'build a nav', 'add a section', 'make a component'.
  • Enforces library-first component lookup, correct Auto Layout structure, and semantic node naming.
  • For visual property binding (colors, text styles, spacing values), defer to figma-style-binding.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from senlindesign/claude2figma.

npx skills add senlindesign/claude2figma

Browse all from senlindesign/claude2figma

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 203
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,292 B
  • docs SUMMARY.md 337 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 21 installs

SKILL.md

Component Rules

Governs how Claude constructs UI in Figma. Supplements figma-generate-design. For visual property binding, defer to figma-style-binding.


Rule 1 — Library-first hierarchy

Before building anything, resolve the component source in this order:

1. search_design_system → importComponentByKeyAsync → createInstance()
2. Local file scan → createInstance()
3. Build from scratch — ONLY if nothing matches

Never rebuild primitives the DS provides: Button, Input, Checkbox, Toggle, Badge, Tag, Avatar, Icon, Tab, Breadcrumb, Toast, Alert, Spinner.

// Library import
const comp = await figma.importComponentByKeyAsync("key_from_search");
const instance = comp.createInstance();
parent.appendChild(instance);

// For component sets (variants)
const set = await figma.importComponentSetByKeyAsync("key");
const instance = set.defaultVariant.createInstance();

Rule 2 — Auto Layout

Every container must use Auto Layout. Property order matters:

  1. Set layoutMode FIRST ("VERTICAL" or "HORIZONTAL")
  2. Set layoutSizingHorizontal / layoutSizingVertical AFTER appendChild
  3. Set layoutMode BEFORE any setBoundVariable call
Goal primaryAxisSizing counterAxisSizing layoutSizingH layoutSizingV
Hug both AUTO AUTO HUG HUG
Fixed card FIXED FIXED FIXED FIXED
Full-width section AUTO FIXED FILL HUG

Rule 3 — Node naming

Name every node semantically with slash hierarchy. Never leave defaults.

Card / Container    Card / Title    Card / Body    Card / Action Row
Hero / Background   Nav / Link Group   Button / Primary

Rule 4 — Incremental building

One section per use_figma call. Validate via screenshot after each step. Return all created/mutated node IDs:

return { created: { card: card.id, title: title.id } };