Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

figma-design-handoffFigma 设计交接

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

1,498

周安装

60

GitHub Stars

161

下载量

485
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:figma-design-handoff(Figma 设计交接)
来源仓库:https://github.com/yonatangross/orchestkit
仓库路径:skills/figma-design-handoff
安装命令:
npx skills add https://github.com/yonatangross/orchestkit --skill figma-design-handoff
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yonatangross/orchestkit --skill figma-design-handoff

简介

用于辅助界面设计、视觉规范、排版、配色和布局优化。

  • 适合整理页面结构、生成 UI 方案或检查视觉一致性。
  • 使用时需结合现有品牌、设计系统和用户任务。
  • 涉及真实页面改动时应通过截图或浏览器预览检查表现。
  • figma-design-handoff 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Figma Design Handoff

Figma dominates design tooling in 2026, with the majority of product teams using it as their primary design tool. A structured handoff workflow eliminates design drift — the gap between what designers create and what developers build. This skill covers the full pipeline: Figma Variables to design tokens, component spec extraction, Dev Mode inspection, Auto Layout to CSS mapping, and visual regression testing.

Quick Reference

RuleFileImpactWhen to Use
Figma Variables & Tokensrules/figma-variables-tokens.mdCRITICALConverting Figma Variables to W3C design tokens JSON
Component Specsrules/figma-component-specs.mdHIGHExtracting component props, variants, states from Figma
Dev Mode Inspectionrules/figma-dev-mode.mdHIGHMeasurements, spacing, typography, asset export
Auto Layout → CSSrules/figma-auto-layout.mdHIGHMapping Auto Layout to Flexbox/Grid
Visual Regressionrules/figma-visual-regression.mdMEDIUMComparing production UI against Figma designs

Total: 5 rules across 1 category

Figma Dev Mode MCP Server (2026 default path)

The Figma Dev Mode MCP Server replaces most manual REST + Dev Mode inspection. Configure it once and any Claude Code session with Figma access can pull design context, tokens, and code mappings directly.

Key tools (16 documented — developers.figma.com/docs/figma-mcp-server/tools-and-prompts):

ToolReturnsUse for
get_design_contextComponent tree + layout + typography + spacingFirst call on any Figma node → grounds every other tool
get_variable_defsToken collections (variables + modes + aliases)Straight export to W3C DTCG JSON — skip the REST pipeline
get_code_connect_mapFigma node → codebase component mappingLinking generated code to existing repo components
get_screenshotPNG of a node or frameScreenshot for visual diffing / embed in chat
search_design_systemToken/component search across librariesFinding existing tokens before generating new ones
use_figma *(beta)*Writes back to the Figma canvasCode-to-design round-trip (write-to-canvas)
generate_figma_design *(beta)*Creates a design frame from a promptAI-generated design stubs for handoff

Install: Enable in the Figma desktop app under *Preferences → Dev Mode MCP Server*, or use the remote MCP endpoint (no desktop required for read tools). Pair with Code Connect UI (GA 2026) to map Figma node IDs → codebase components without manual JSON wiring.

// .claude/mcp-servers/figma.json — sample config
{
  "figma": {
    "command": "figma-mcp",
    "args": ["--mode=dev"],
    "env": { "FIGMA_ACCESS_TOKEN": "${FIGMA_TOKEN}" }
  }
}

Quick Start

# 1. Export Figma Variables → tokens.json (using Figma REST API)
curl -s -H "X-Figma-Token: $FIGMA_TOKEN" \
  "https://api.figma.com/v1/files/$FILE_KEY/variables/local" \
  | node scripts/figma-to-w3c-tokens.js > tokens/figma-raw.json

# 2. Transform with Style Dictionary
npx style-dictionary build --config sd.config.js

# 3. Output: CSS custom properties + Tailwind theme
# tokens/
#   figma-raw.json        ← W3C Design Tokens format
#   css/variables.css     ← --color-primary: oklch(0.65 0.15 250);
#   tailwind/theme.js     ← module.exports = { colors: { primary: ... } }
// W3C Design Tokens Format (DTCG)
{
  "color": {
    "primary": {
      "$type": "color",
      "$value": "{color.blue.600}",
      "$description": "Primary brand color"
    },
    "surface": {
      "$type": "color",
      "$value": "{color.neutral.50}",
      "$extensions": {
        "mode": {
          "dark": "{color.neutral.900}"
        }
      }
    }
  }
}
// Style Dictionary config for Figma Variables
import StyleDictionary from 'style-dictionary';

export default {
  source: ['tokens/figma-raw.json'],
  platforms: {
    css: {
      transformGroup: 'css',
      buildPath: 'tokens/css/',
      files: [{ destination: 'variables.css', format: 'css/variables' }],
    },
    tailwind: {
      transformGroup: 'js',
      buildPath: 'tokens/tailwind/',
      files: [{ destination: 'theme.js', format: 'javascript/module' }],
    },
  },
};

Handoff Workflow

The design-to-code pipeline follows five stages:

  1. Design in Figma — Designer creates components with Variables, Auto Layout, and proper naming
  2. Extract Specs — Use Dev Mode to inspect spacing, typography, colors, and export assets
  3. Export Tokens — Figma Variables → W3C tokens JSON via REST API or plugin
  4. Build Components — Map Auto Layout to CSS Flexbox/Grid, apply tokens, implement variants
  5. Visual QA — Compare production screenshots against Figma frames with Applitools
┌─────────────┐     ┌──────────────┐     ┌───────────────┐
│  Figma File  │────▶│  Dev Mode    │────▶│  tokens.json  │
│  (Variables, │     │  (Inspect,   │     │  (W3C DTCG    │
│  Auto Layout)│     │   Export)    │     │   format)     │
└─────────────┘     └──────────────┘     └───────┬───────┘
                                                  │
                                                  ▼
┌─────────────┐     ┌──────────────┐     ┌───────────────┐
│  Visual QA  │◀────│  Components  │◀────│ Style         │
│  (Applitools,│     │  (React +   │     │ Dictionary    │
│   Chromatic) │     │  Tailwind)   │     │ (CSS/Tailwind)│
└─────────────┘     └──────────────┘     └───────────────┘

Rules

Each rule is loaded on-demand from the rules/ directory:

Auto Layout to CSS Mapping

Quick reference for the most common mappings:

Figma Auto LayoutCSS EquivalentTailwind Class
Direction: Horizontalflex-direction: rowflex-row
Direction: Verticalflex-direction: columnflex-col
Gap: 16gap: 16pxgap-4
Padding: 16padding: 16pxp-4
Padding: 16, 24padding: 16px 24pxpy-4 px-6
Align: Centeralign-items: centeritems-center
Justify: Space betweenjustify-content: space-betweenjustify-between
Fill containerflex: 1 1 0%flex-1
Hug contentswidth: fit-contentw-fit
Fixed width: 200width: 200pxw-[200px]
Min width: 100min-width: 100pxmin-w-[100px]
Max width: 400max-width: 400pxmax-w-[400px]
Wrapflex-wrap: wrapflex-wrap
Absolute positionposition: absoluteabsolute

Visual QA Loop

// Applitools Eyes + Figma Plugin — CI integration
import { Eyes, Target } from '@applitools/eyes-playwright';

const eyes = new Eyes();

await eyes.open(page, 'MyApp', 'Homepage — Figma Comparison');

// Capture full page
await eyes.check('Full Page', Target.window().fully());

// Capture specific component
await eyes.check(
  'Hero Section',
  Target.region('#hero').ignoreDisplacements()
);

await eyes.close();

The Applitools Figma Plugin overlays production screenshots on Figma frames to catch:

  • Color mismatches (token not applied or wrong mode)
  • Spacing drift (padding/margin deviations)
  • Typography inconsistencies (font size, weight, line height)
  • Missing states (hover, focus, disabled not implemented)

Key Decisions

DecisionRecommendation
Token formatW3C Design Tokens Community Group (DTCG) JSON
Token pipelineFigma REST API → Style Dictionary → CSS/Tailwind
Color formatOKLCH for perceptually uniform theming
Layout mappingAuto Layout → CSS Flexbox (Grid for 2D layouts)
Visual QA toolApplitools Eyes + Figma Plugin for design-dev diff
Spec formatTypeScript interfaces matching Figma component props
Mode handlingFigma Variable modes → CSS media queries / class toggles

Anti-Patterns (FORBIDDEN)

  • Hardcoded values: Never hardcode colors, spacing, or typography — always reference tokens
  • Skipping Dev Mode: Do not eyeball measurements — use Dev Mode for exact values
  • Manual token sync: Do not manually copy values from Figma — automate with REST API
  • Ignoring modes: Variables with light/dark modes must map to theme toggles, not separate files
  • Screenshot-only QA: Visual comparison without structured regression testing misses subtle drift
  • Flat token structure: Use nested W3C DTCG format, not flat key-value pairs

References

ResourceDescription
references/figma-to-code-workflow.mdEnd-to-end workflow, toolchain options
references/design-dev-communication.mdPR templates, component status tracking
references/applitools-figma-plugin.mdSetup, CI integration, comparison config

Related Skills

  • ork:design-system-tokens — W3C token architecture and Style Dictionary transforms
  • ork:ui-components — shadcn/ui and Radix component patterns
  • ork:accessibility — WCAG compliance for components extracted from Figma

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.58%
按下载量换算182

Claude

30.6%
按下载量换算148

Cursor

19.94%
按下载量换算97

Gemini CLI

9.23%
按下载量换算45

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills