一键导入
figma-integration
Official Figma Developer MCP integration for QuanuX. Allows agents to inspect designs, extract variables, and generate code from Figma files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Official Figma Developer MCP integration for QuanuX. Allows agents to inspect designs, extract variables, and generate code from Figma files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Reference for OS and Kernel parameter optimization on the QuanuX Edge.
Reference for using the QuanuX Control CLI (quanuxctl).
The authoritative "School of Architecture" for building QuanuX Extensions (Sidecars). Enforces the QXP protocol, Go runtime preference, and privacy-first security model.
Instructions for operating and configuring the SignalR Bridge for TopstepX.
Guidelines for adding functions to the AST translation map for QuanuX-Annex duckdb transpiler
Operating procedures and architecture for the QuanuX-Annex Data Ingestion Engine and NATS JetStream mesh.
| name | figma-integration |
| description | Official Figma Developer MCP integration for QuanuX. Allows agents to inspect designs, extract variables, and generate code from Figma files. |
| metadata | {"version":"1.0.0","author":"Figma / QuanuX","priority":50} |
This skill provides access to the Figma Developer MCP Server, allowing you to read design data, inspect layers, and extract code snippets directly from Figma files.
When using this tool to generate code, you MUST adhere to the following QuanuX Standards:
client/skills/react-frontend-standards/SKILL.md.docs/ARCHITECTURE_DATA_LAYER.md to map data needs to the correct transport (API vs Stream).QUANUX_figma must be set via quanuxctl secrets set figma.quanuxctl ext start figma).The following tools are exposed by the underlying figma-developer-mcp server:
get_design_contextRetrieves detailed design context for a specific layer or selection. Use this to understand the structure and properties of a component.
get_codeExtracts code (e.g. React/Tailwind) from a Figma selection or URL.
get_variable_defsReturns the design tokens (variables) and styles used within a selection. Essential for adhering to the Design System.
get_metadataReturns a simplified XML representation of the selection (IDs, names, types, positions). Light-weight structural analysis.
get_screenshotCaptures a visual screenshot of the selection. useful for multi-modal analysis.
create_design_system_rulesGenerates a rule file (context) to help translate designs into code that matches the project's existing design system.
whoamiReturns the identity of the authenticated Figma user.
To get code for a specific button:
get_metadata to find the node ID of the button (or use a direct URL).get_code with that ID.get_variable_defs to ensure you are using the correct color tokens.