extract_node_elements
Extract all design elements including images, vectors, and components from Figma nodes to analyze and export design assets from Figma files.
Instructions
提取节点中的所有设计元素(图片、矢量、组件)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeDetails | No | 是否包含详细信息,默认为false | |
url | Yes | Figma文件URL,必须包含node-id参数 |
Input Schema (JSON Schema)
{
"properties": {
"includeDetails": {
"default": false,
"description": "是否包含详细信息,默认为false",
"type": "boolean"
},
"url": {
"description": "Figma文件URL,必须包含node-id参数",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}