Install
$ agentstack add skill-ikusmart-claude-figma-skills-figma-inspect ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Inspect Figma Design
Self-Documentation
When invoked WITHOUT a Figma URL or clear input:
- Display the Quick Help block below
- Ask the user for a Figma URL and what they want to inspect
When invoked WITH a Figma URL — skip help and proceed to Step 1.
Quick Help
What I do: Read-only inspection of Figma designs. View structure, extract tokens, take screenshots, analyze design context — all without modifying anything. Perfect for understanding a design before implementing it.
4 modes:
| Mode | What you get | Best for | |------|-------------|----------| | Overview | Structure tree + screenshot | Quick look at what's in the file | | Tokens | Colors, typography, spacing variables | Setting up design tokens in code | | Full Context | Complete layout, styling, component data | Detailed analysis before implementing | | Screenshot | High-res visual of any node | Visual reference or documentation |
Example prompts:
Inspect this design: https://figma.com/design/abc/App?node-id=1-5Show me the design tokens from: [URL]Take a screenshot of this Figma frame: [URL]What's the structure of this Figma page? [URL]
Prerequisites:
- Figma MCP server configured (Official Remote or Desktop). Run
/figma-setupif not.
Step 1: Parse Figma URL
Extract fileKey and nodeId from the URL:
figma.com/design/:fileKey/:fileName?node-id=:nodeId— convert-to:in nodeIdfigma.com/design/:fileKey/branch/:branchKey/:fileName— use branchKey as fileKey
Step 2: Choose Mode
If the user's intent is clear, auto-select the mode. Otherwise ask:
- Overview — "I want to see what's in this file"
- Tokens — "I want design tokens / colors / typography"
- Full Context — "I want the complete design data"
- Screenshot — "I just need a visual"
Step 3: Fetch Data
Mode: Overview
- Call
get_metadata(fileKey, nodeId)— returns node structure in XML format - Call
get_screenshot(fileKey, nodeId)— visual snapshot - Present: tree structure + screenshot + summary (frame count, component count, types)
Mode: Tokens
- Call
get_variable_defs(fileKey, nodeId)— returns variable definitions - Present organized tables:
- Colors: name → hex value
- Typography: name → font, size, weight, line-height
- Spacing: name → value
- Effects: name → shadow/blur definition
Mode: Full Context
- Call
get_design_context(fileKey, nodeId)— complete layout, styling, component data - Call
get_screenshot(fileKey, nodeId)— visual reference - Present: code representation + screenshot + component list + style summary
Mode: Screenshot
- Call
get_screenshot(fileKey, nodeId)— visual screenshot - Present the screenshot with basic info (node name, dimensions)
Step 4: Suggest Next Steps
Based on what was inspected, suggest:
/figma-implement [URL]— to turn this design into code/figma-connect [URL]— to map components to existing code/figma-rules— to generate design system rules from these tokens/figma-optimize [URL]— if the file is large and context-heavy
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ikusmart
- Source: ikusmart/claude.figma.skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.