figma-reader
23
总安装量
23
周安装量
#16179
全站排名
安装命令
npx skills add https://github.com/delexw/claude-code-misc --skill figma-reader
Agent 安装分布
codex
23
opencode
21
gemini-cli
21
github-copilot
21
claude-code
20
amp
20
Skill 文档
Figma Reader
Read Figma design context via the Figma MCP server.
Arguments
$ARGUMENTS[0]â Figma link, design prompt copied from Figma, or attached UI design image (optional)$ARGUMENTS[1]â (optional) Output directory for persisting the design context. Defaults to.implement-assets/figma
When invoked by the orchestrator (e.g. implement), $ARGUMENTS[1] is provided. When used standalone, it defaults to .implement-assets/figma.
Execution
- Codebase check: Verify this is a frontend project â follow references/rules.md Codebase Check. If not frontend, skip the entire skill.
- Pre-flight check: Use
ToolSearchto detect if Figma MCP tools are available â follow references/rules.md - If MCP is not available, use
AskUserQuestionto guide setup or allow skip - Resolve design input:
- If
$ARGUMENTS[0]contains a valid Figma link or prompt â use it directly - If
$ARGUMENTS[0]is an attached UI image â show it for context, then useAskUserQuestionto ask the user to select the relevant component in Figma (see references/rules.md Design Input) - If
$ARGUMENTS[0]is empty or not provided â useAskUserQuestionto ask user (see references/rules.md Design Input)
- If
- Read design: Use the Figma MCP tools to read the design from the Figma link resolved in step 4
- Format the output per references/output-format.md
- Save output: Run
mkdir -p $ARGUMENTS[1]via Bash, then save the full formatted output to$ARGUMENTS[1]/output.mdusing the Write tool