Claude (claude.ai)
Install copyto.design as a Skill. Claude reads the skill on demand whenever you ask for a Figma file, fires our API with the HTML it just produced, saves the binary .fig response to a working file, and surfaces it to the user as a one-click download.
- 01
Save the skill file
Paste this into a new
copy-to-design.skill.md. It's the canonical skill body — every other agent on this page wraps the same instructions, just in a different folder.copy-to-design.skill.md--- name: copy-to-design description: | Convert HTML the assistant generates (or a public URL) into an editable Figma file. Trigger whenever the user asks for a "Figma file", "Figma design", or wants to "open this in Figma". --- ## When to fire Fire this skill when the user says any of: - "make this a Figma file" - "give me the Figma version" - "open this in Figma" - "convert <url> to Figma" ## How to fire POST the HTML you just produced (or a URL the user named) to https://api.copyto.design/v1/open/html_to_fig_file. ```bash curl --location 'https://api.copyto.design/v1/open/html_to_fig_file' \ --header 'Authorization: $CTD_API_KEY' \ --header 'Content-Type: application/json' \ --output output.fig \ --data '{ "url": "https://copyto.design" }' # or, for raw HTML: # --data '{ "html": "<h1>Hello, Figma</h1>" }' ``` ## What to return The response body is the binary .fig file itself ( application/octet-stream). Save it to output.fig and surface it to the user as a downloadable attachment labeled "Open in Figma". ## Auth The skill secret CTD_API_KEY holds the sk_… key. Send it as the literal Authorization header value — no Bearer prefix. - 02
Upload to Skills
In Claude, open Settings → Skills → New skill. Drop the file in. Set
CTD_API_KEYas a skill secret (it never appears in transcripts).▦copy-to-designHTML → editable .fig file. Triggers on "Figma" requests.Active○research-helper—Inactive - 03
Try it
Tested prompt patterns — copy any one verbatim:
Build a pricing page in HTML and give me the Figma version.Here's some HTML — <paste> — make it a Figma file.Convert https://stripe.com/pricing to a Figma file.