Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add naver/design-to-ui --skill figma-asset-downloadgit clone --depth 1 https://github.com/naver/design-to-uiWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/naver/design-to-ui/figma-asset-download)<a href="https://agentmods.dev/skills/naver/design-to-ui/figma-asset-download"><img src="https://agentmods.dev/badge/skills/naver/design-to-ui/figma-asset-download/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/naver/design-to-ui/figma-asset-download"><img src="https://agentmods.dev/badge/skills/naver/design-to-ui/figma-asset-download.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00079 | $0.01672 |
| Opus 5 | $0.00039 | $0.00836 |
| Sonnet 5 | $0.00016 | $0.00334 |
| Haiku 4.5 | $0.00008 | $0.00167 |
Grade A, and why
figma-asset-download scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 149 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Figma Asset Download
Figma REST API를 사용해 지정한 프레임 내 이미지·벡터 노드를 로컬에 SVG 또는 PNG로 다운로드하는 범용 스킬입니다.
Figma MCP와 무관하며, output_dir 인자만 바꾸면 어떤 플랫폼에서도 사용할 수 있습니다.
역할
- 프레임 노드 ID 기준으로 에셋(아이콘·이미지)을 자동 식별하고 Figma Images API로 다운로드합니다.
- 하이브리드 수집 전략: 1순위
exportSettings(디자이너 지정), 2순위 아이콘 휴리스틱(TEXT 없는 INSTANCE/COMPONENT), 3순위 leaf FRAME 벡터 그래픽(TEXT 없음 + VECTOR 있음 + 자식 FRAME 없음)을 사용합니다. - componentId 기준 중복 제거로 동일 아이콘 인스턴스를 1회만 다운로드합니다.
- 파일명: 노드의 Figma name 속성을 snake_case로 변환하여
ic_<name>.<format>로 저장합니다. 비ASCII 이름은 nodeId를 fallback으로 사용합니다. - 이미지 Fill 노드(
fills[].type == "IMAGE")는/files/{key}/imagesAPI로 별도 다운로드합니다.
Prerequisites
Figma Personal Access Token이 필요합니다. 토큰이 없으면 스크립트가 실패합니다.
- Figma → Settings → Personal access tokens에서 토큰 발급 (권한에 file_content:read 포함)
- 환경 변수에 설정:
echo 'export FIGMA_ACCESS_TOKEN="figd_xxx"' >> ~/.zshrc && source ~/.zshrc
실행 방법
사용법 1 — 개별 node ID 지정
분류된 node ID를 직접 지정하여 다운로드합니다. design-to-ui Step 5에서 주로 사용합니다.
bash "${CLAUDE_SKILL_DIR}/scripts/download_figma_frame_images.sh" \
<file_key> <output_dir> <node_id_1> [node_id_2] ...
| 인자 | 설명 |
|---|---|
file_key |
Figma 파일 키 (figma.com/design/{file_key}/...에서 추출) |
output_dir |
저장 경로 (예: /tmp/figma_assets, app/src/main/res/drawable) |
node_id_1 ... |
다운로드할 노드 ID (1개 이상 필수) |
예시:
bash "${CLAUDE_SKILL_DIR}/scripts/download_figma_frame_images.sh" \
<FILE_KEY> /tmp/figma_assets 1234:5678 1234:5679 2345:6789
사용법 2 — 프레임 전체 스캔
프레임 하위 전체를 순회하여 에셋을 자동 발견·다운로드합니다.
bash "${CLAUDE_SKILL_DIR}/scripts/download_figma_frame_images.sh" \
--scan <file_key> <frame_node_id> <output_dir>
| 인자 | 설명 |
|---|---|
--scan |
스캔 모드 활성화 (필수 플래그) |
file_key |
Figma 파일 키 |
frame_node_id |
스캔할 프레임 노드 ID |
output_dir |
저장 경로 |
예시:
bash "${CLAUDE_SKILL_DIR}/scripts/download_figma_frame_images.sh" \
--scan <FILE_KEY> 1234:5678 app/src/main/res/drawable
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 149 lines · 79 tokens per session scan A 37ae570bd303
figma-asset-download is a skill published in the GitHub repository naver/design-to-ui (5 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 79 tokens to every session and 1,672 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
argent-lens
Propose multiple visual design variants for on-screen elements and let the human pick in the Argent Lens window. Use when the user asks for design alternatives / options / A-B choices for a screen or component, or any time you have produced more than one candidate look for an element and want a human decision before…
figma-codegen
Generate framework-aware code from a Figma design. Reads the project's stack profile and emits code matching the existing framework (React/Vue/Svelte/Next/etc.) and styling (Tailwind/CSS/CSS-in-JS), reusing existing components and design tokens instead of regenerating from scratch. Triggers whenever the user wants a…
figma-build
Build a Figma design from code or a description — the reverse of figma-codegen. Reuses the connected file's existing design system (components, variables, styles) instead of drawing primitives with hardcoded values. Triggers whenever the user wants something created or updated IN Figma from code or a spec — e.g.…
create-anatomy
Generate a visual anatomy annotation in Figma showing numbered markers on a component instance with an attribute table. Use when the user mentions "anatomy", "anatomy annotation", "component anatomy", "create anatomy", or wants to annotate a component's structural elements.
create-property
Generate a visual property annotation in Figma showing each configurable property axis with component instance previews. Use when the user mentions "property", "properties", "property annotation", "create property", or wants to document a component's configurable properties visually.
create-component-md
Generate a canonical JSON contract and a self-contained implementation Markdown specification for a Figma component covering API, structure, color, and screen-reader behavior. Reads a base.json produced by the uSpec Extract plugin, runs four read-only interpretation skills in parallel, reconciles their outputs, and…