figma

Import Figma assets, tokens, components, and motion into HyperFrames video compositions.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill figma-anderhonorato
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: figma
Source: https://github.com/AnderHonorato/Mem-rias-IA---Infinity/tree/main/Manus/Skills/html-video-production/references/figma
Command: npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill figma-anderhonorato

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Designers and video creators often need to bring Figma designs into animated video compositions without manually recreating layouts, colors, and animations. This Skill imports Figma content directly into HyperFrames compositions, preserving geometry, brand tokens, and motion timing while freezing assets locally for deterministic renders. ## Core Features & Use Cases - Asset and Token Import: Render Figma layers as SVG/PNG via REST and import brand variables as composition variables with binding records, so re-branding propagates without re-importing. - Component and Motion Reconstruction: Convert Figma node trees into editable HTML components and translate Figma Motion animations into GSAP timelines, with an objective PSNR-based verification script comparing against Figma's own video export. - Storyboard Reconstruction: Parse storyboard sections as keyframes rather than slides, diffing adjacent frames into element chains and building a single sequenced timeline. - Use Case: A user pastes a figma.com link to an animated product card; the Skill imports the frame as a component, translates its motion to a GSAP timeline, and verifies the render against Figma's exported MP4 before finishing. ## Quick Start Import this Figma frame into my HyperFrames composition and reconstruct its animation: https://www.figma.com/design/FILEKEY/My-File?node-id=1-2

Frequently Asked Questions about figma

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I import a Figma design into a video composition?

Paste a figma.com link and the Skill routes by intent: assets render via the REST CLI as frozen SVG/PNG files, frames convert to editable HTML components at exact Figma geometry, and animations translate to GSAP timelines through the Figma MCP connector.

How do I import Figma brand tokens and colors?

Run the tokens command with the file key to import variables as composition brand variables with a JSON sidecar and binding records. Variables are Enterprise-gated on REST, but the Figma MCP get_variable_defs tool works on other plans as a fallback.

Can I import Figma Motion animations without Enterprise access?

Yes, motion import uses the Figma MCP get_motion_context tool rather than REST, so it is not Enterprise-gated. The raw response is normalized into motion documents and converted to GSAP timelines, then verified against Figma's own video export.

Why does my imported Figma text look slightly misaligned?

Figma text boxes shorter than their line height are vertically trimmed, causing roughly 6px drift on large fonts. The mapper emits text-box-trim for these cases; compare the rendered fragment against a PNG export of the same node to confirm remaining drift.

What are the limitations of importing Figma shaders?

Figma's MCP render path does not execute shaders and flattens them to the base color, and shader source is only reachable for library-published styles on paid seats. The recommended path is asking the user to export the shader frame natively from Figma as PNG or MP4.

How is motion import fidelity verified?

The verify-motion.mjs script compares motion-energy deltas between the HyperFrames render and Figma's export_video output using PSNR per time window. It fails below a 15dB minimum threshold, isolating choreography errors from static rendering differences.