figma-intake

figma-intake is a skill for Claude Code from PMDevSolutions/Aurelius. It costs 60 tokens per session (3,082 once invoked), scanned A, original, MIT.

A structured interview that examines a Figma file, a design tool file, and produces a machine-readable build specification. The specification gives later tools the project details needed to build a React app.

In plain words
What is it for?
Use it at the start of a Figma-to-React build to inspect the file, ask targeted questions, and create or verify build-spec.json.
Why use it?
It reduces repeated questions and fills in missing project context before code generation begins. It also checks whether an existing specification matches the supplied Figma file.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is - Run: node scripts/renderer-registry.js detect . --json.

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code.

Wrote 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.

agentmods badge for figma-intake

README.md
[![agentmods](https://agentmods.dev/badge/skills/pmdevsolutions/aurelius/figma-intake.svg)](https://agentmods.dev/skills/pmdevsolutions/aurelius/figma-intake)
Your own site
<a href="https://agentmods.dev/skills/pmdevsolutions/aurelius/figma-intake"><img src="https://agentmods.dev/badge/skills/pmdevsolutions/aurelius/figma-intake.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,082 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.03082
Opus 5 $0.00030 $0.01541
Sonnet 5 $0.00012 $0.00616
Haiku 4.5 $0.00006 $0.00308

Measured yesterday against content hash b4c541b25d0e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

figma-intake 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 yesterday.

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.

.claude/skills/figma-intake/SKILL.md · 298 lines

How it starts

The opening of the file, as written. The whole thing — 298 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Figma Intake — Structured Discovery

Purpose

Gather everything needed to build a React app from a Figma design in a single structured pass. Auto-discovers what it can, asks the user only what it must, and outputs a machine-readable build-spec.json that downstream skills consume without re-asking questions.

When to Use

  • First phase of /build-from-figma pipeline
  • Any time a user provides a Figma URL and wants to build from it
  • When you need to understand a Figma file's structure before generating code

Inputs

  • Required: Figma file URL (with optional node-id)
  • Optional: Existing project directory to integrate into

Process

Step 0: Conversation Fast-Path (Skip the Interview)

If .claude/plans/build-spec.json already exists with "source": "conversation", the spec was produced by the conversation-intake skill and the Figma file was generated from it by design-brief-to-figma — the interview already happened in /build-from-conversation. Do not re-interview the user. Instead:

1. Verify the spec's figma block is populated (fileKey, url) and matches the
   URL this skill was invoked with. Mismatch → ask which file wins.
2. Verify the file is reachable: get_metadata(fileKey).
3. Backfill any pages[].figmaNodeId that is still null from the metadata
   (match generated frames to pages by name/order).
4. Keep "source": "conversation" unchanged — downstream phases treat the spec
   exactly like a Figma-sourced one; the source value preserves provenance.
5. Expect no Figma variables in the generated file: token extraction
   (design-token-lock) will fall back to computed styles, which is correct
   here because the captured mockups were rendered from the design brief's
   exact values.
6. Skip Steps 1-3 below entirely and proceed to Step 4 validation /
   Step 5 confirmation only if the spec is incomplete; otherwise report
   "fast-path: spec reused" and hand control back to the pipeline (Phase 2).

If the file at figma.url no longer exists, fall through to the normal flow below using the URL the user provided.

Read the full file on GitHub · 298 lines

Changes

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.

  1. yesterday First seen · 298 lines · 0 tokens per session scan A b4c541b25d0e

Subscribe to this mod's changes

figma-intake is a skill published in the GitHub repository PMDevSolutions/Aurelius (8 stars, last pushed 21d ago), licensed MIT. It adds 60 tokens to every session and 3,082 once invoked, about $0.0003 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-09-04.

Related

Other skills, from other repositories

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…

awdr74100/figwright · 145 tokens

high-plains-drifter

Align a design to your real Storybook components instead of reconstructing it. Use when turning a Figma frame into React built from an existing component library (Build mode), or when pulling scrappy exploratory code into line with the library once a direction feels right (Align mode). Triggers include "build this…

alexconner-79/high-plains-drifter · 148 tokens

Figma Developer

Extract components from Figma, convert designs to React components, sync design tokens, and generate code from designs. Bridge the gap between design and code with automated workflows.

daffy0208/ai-dev-standards · 37 tokens

mcp-sdk-audit

Upgrade @modelcontextprotocol/server (the MCP TypeScript SDK v2) and prove the wire contract survived. The SDK is a runtime dependency whose breakage lands on the wire, not in the type checker — so this sorts each release by which SDK source files it touched (Figwright uses only the server + stdio slice of a…

awdr74100/figwright · 159 tokens

design-to-code

Mockup-to-component pipeline using Google Stitch, 21st.dev, and Storybook MCP. Accepts a screenshot, a description, or a URL and produces production-ready React components, checking existing Storybook components before generating anything new. Use when implementing UI from a mockup or screenshot. To call the MCP tool…

yonatangross/orchestkit · 86 tokens

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.…

awdr74100/figwright · 180 tokens