Install
$ agentstack add skill-renfei-design-figma-ai-bridge-content-review ✓ 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 Used
- ✓ 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
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— extract all text nodes.github/skills/content-review/scripts/figma_text.py apply— apply text changesscripts/figma_cmd.mjsfor 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 --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 /tmp/text_changes.json
The changes JSON is an array of {nodeId, newText}.
Style Rules Quick Reference
Voice & Grammar
- Present tense, active voice
- Address users as "you"
- Use contractions (don't, it's, you'll)
- Every singular countable noun needs an article (a, an, the)
- "Select" not "click" or "tap"
- No "please" in instructions
- No "in order to" — use "to"
Capitalization
- Sentence case everywhere — headings, buttons, menus, tooltips
- Capitalize only first word + proper nouns
- Common nouns lowercase: workspace, dashboard, pipeline, settings
Word Choice
- Simple words: "use" not "utilize", "start" not "initiate", "to" not "in order to"
- Positive framing: "Save your work before closing" not "Don't close without saving"
- Action verbs: Select, Enter, Turn on/off, Open, Close, Go to
Punctuation
- Serial comma (Oxford): "files, folders, and settings"
- No periods in button labels or tooltips (unless multi-sentence)
- No periods in headings
- Apostrophes for contractions, not plurals: "APIs" not "API's"
Common UI Text Fixes
| Original | Fixed | Rule | |----------|-------|------| | "Click Save" | "Select Save" | Use "select" not "click" | | "Setup Your Workspace" | "Set up your workspace" | Sentence case + "set up" is two words as verb | | "Please Enter a Name" | "Enter a name" | No "please", sentence case | | "In Order To Continue" | "To continue" | Simplify, sentence case | | "Settings Will Be Saved" | "Your settings are saved" | Present tense, active voice | | "Dont forget to save" | "Don't forget to save" | Proper contraction |
References
.github/skills/content-review/references/style/grammar.md.github/skills/content-review/references/style/capitalization.md.github/skills/content-review/references/style/word-choice.md.github/skills/content-review/references/style/punctuation.md
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: renfei-design
- Source: renfei-design/Figma-AI-Bridge
- 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.