Figma-AI-Bridge: Skill for Claude Code

.github/skills/content-review/SKILL.md

content-review is a skill for Claude Code, Codex from renfei-design/Figma-AI-Bridge. It costs 67 tokens per session (1,041 once invoked), scanned A, original, MIT.

A writing review tool for text inside Figma designs, using standard style guidelines. It can extract the text, suggest corrections, and apply approved changes back to Figma.

In plain words
What is it for?
Use it to review labels, buttons, messages, headings, and other UI text in Figma, then apply the approved edits.
Why use it?
It helps find grammar, capitalization, wording, and consistency problems without checking every design element manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is renfei-design/Figma-AI-Bridge's own configuration. It tells Claude Code and Codex how to work on Figma-AI-Bridge itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Figma-AI-Bridge configures →

Reuse

Borrowing it

Nothing to install: this file belongs to renfei-design/Figma-AI-Bridge. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/renfei-design/Figma-AI-Bridge/main/.github/skills/content-review/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/renfei-design/Figma-AI-Bridge

Made for: Claude Code, Codex.

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 content-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/renfei-design/figma-ai-bridge/content-review/github.svg)](https://agentmods.dev/skills/renfei-design/figma-ai-bridge/content-review)
Your own site
<a href="https://agentmods.dev/skills/renfei-design/figma-ai-bridge/content-review"><img src="https://agentmods.dev/badge/skills/renfei-design/figma-ai-bridge/content-review/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.

agentmods 80×15 button for content-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/renfei-design/figma-ai-bridge/content-review"><img src="https://agentmods.dev/badge/skills/renfei-design/figma-ai-bridge/content-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,041 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00067 $0.01041
Opus 5 $0.00034 $0.00521
Sonnet 5 $0.00013 $0.00208
Haiku 4.5 $0.00007 $0.00104

Measured 10d ago against content hash ab49e7af6666, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

content-review 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/figma_text.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.github/skills/content-review/SKILL.md · 112 lines

How it starts

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

Figma Content Review

Review UI text in Figma designs against writing style guidelines and apply fixes directly. Be fast — extract, review, present changes, apply.

Prerequisites

  • figma-ai-bridge plugin running in Figma and connected
  • Helper scripts:
    • .github/skills/content-review/scripts/figma_text.py extract <ch> <nodeId> — extract all text nodes
    • .github/skills/content-review/scripts/figma_text.py apply <ch> <changes.json> — apply text changes
    • scripts/figma_cmd.mjs for WebSocket commands

Workflow — Do This Quickly

Run all commands directly without asking for permission. Only pause for user approval when presenting the proposed text changes (step 3).

1. Extract text from Figma

Get the selection, then extract all text nodes:

python3 .github/skills/content-review/scripts/figma_text.py extract <ch> <nodeId> --out /tmp/figma_texts.json

Outputs a JSON array of {nodeId, nodeName, text, fontSize, visible} for every text node.

2. Review text against style rules

Load the style references and review each text node:

  • .github/skills/content-review/references/style/grammar.md — voice, tense, articles, pronouns
  • .github/skills/content-review/references/style/capitalization.md — sentence case, proper nouns
  • .github/skills/content-review/references/style/word-choice.md — simple words, contractions, action verbs
  • .github/skills/content-review/references/style/punctuation.md — periods, commas, colons, apostrophes

For each issue found, generate a change entry:

{"nodeId": "...", "original": "...", "newText": "...", "reason": "..."}

3. Present changes for approval

Show a diff table:

Node Original Suggested Rule

Wait for user approval (all, selective, or skip).

4. Apply approved changes

python3 .github/skills/content-review/scripts/figma_text.py apply <ch> /tmp/text_changes.json

The changes JSON is an array of {nodeId, newText}.

Read the full file on GitHub · 112 lines

Files

What ships with it

5 files 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.

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. 10d ago First seen · 112 lines · 67 tokens per session scan A ab49e7af6666

Subscribe to this mod's changes

content-review is a skill published in the GitHub repository renfei-design/Figma-AI-Bridge (16 stars, last pushed 6mo ago), licensed MIT. It adds 67 tokens to every session and 1,041 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-08-31.