with one click
figma
Figma Parser — estrai design system da file Figma via API
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Figma Parser — estrai design system da file Figma via API
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
GitHub — repos, issues, PRs, gists, Pages, branches via API
Gmail orchestrator — triage inbox, search, draft replies in-thread
Session closing (log, commit, push)
Mid-session checkpoint (log, database, commit, push) without closing
Brain package manager — install, update, list skills from registries
AI email auto-responder — monitors inbox, drafts context-aware replies, never sends without approval
| name | figma |
| description | Figma Parser — estrai design system da file Figma via API |
| argument-hint | [figma-url] [parse|export|pressless] |
| requires | {"env":["FIGMA_ACCESS_TOKEN"]} |
Input: $ARGUMENTS
Prende un URL Figma e ne estrae il design system via API REST: colori, font, spaziature, layout, frame, componenti.
FIGMA_ACCESS_TOKEN nel .env (gratis: https://www.figma.com/developers/api#access-tokens)import sys; sys.path.insert(0, '${CLAUDE_SKILL_DIR}/scripts')
from figma_parser import FigmaParser
fp = FigmaParser() # legge FIGMA_ACCESS_TOKEN da .env
data = fp.parse_url(figma_url)
ds = fp.extract_design_system(data)
# → colori, font, frame, componenti, spaziature, layout grid
data = fp.parse_url(figma_url)
ds = fp.extract_design_system(data)
file_key = fp.parse_figma_url(figma_url)["file_key"]
frame_ids = [f["id"] for f in ds["frames"]]
saved = fp.download_frame_images(file_key, frame_ids, output_dir=f"storage/figma/{slug}/", format="png", scale=2)
data = fp.parse_url(figma_url)
pds = fp.to_pressless_design_system(data)
# → palette, typography, spacing, layout, frame inventory
# Suggerisci: "Vuoi lanciare /pressless con questo design system?"
🎨 **Figma Parser: {url}**
**Palette:** BG: {bg} | Text: {text} | Accent: {accent} ({theme} theme)
**Typography:** Heading: {heading_font} | Body: {body_font}
**Frame:** {N} frame trovati
**Componenti:** {N}
📁 Output: storage/figma/{slug}/
FIGMA_ACCESS_TOKEN non c'e, spiega come ottenerlo