Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-stylesgit clone --depth 1 https://github.com/hoshikitsunoda/figma-plugins-vibe-coding-templateWrote 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.
[](https://agentmods.dev/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-styles)<a href="https://agentmods.dev/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-styles"><img src="https://agentmods.dev/badge/rules/hoshikitsunoda/figma-plugins-vibe-coding-template/figma-styles.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01060 |
| Opus 5 | $0.00000 | $0.00530 |
| Sonnet 5 | $0.00000 | $0.00212 |
| Haiku 4.5 | $0.00000 | $0.00106 |
Grade A, and why
figma-styles 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 6d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Figma Styles API
Styles are reusable design properties that can be applied to multiple nodes.
Style Types
| Style Type | Applies To | Properties |
|---|---|---|
| Paint Style | Fills, strokes | Colors, gradients, images |
| Text Style | Text nodes | Font, size, line height, etc. |
| Effect Style | Any node | Shadows, blurs |
| Grid Style | Frames | Layout grids |
Getting Local Styles
// Get all local styles (async)
const paintStyles = await figma.getLocalPaintStylesAsync()
const textStyles = await figma.getLocalTextStylesAsync()
const effectStyles = await figma.getLocalEffectStylesAsync()
const gridStyles = await figma.getLocalGridStylesAsync()
// Log style names
paintStyles.forEach(style => console.log(style.name))
Creating Styles
Paint Style
const style = figma.createPaintStyle()
style.name = "Brand/Primary"
style.paints = [{
type: 'SOLID',
color: { r: 0.2, g: 0.4, b: 1 }
}]
Text Style
const style = figma.createTextStyle()
style.name = "Heading/H1"
style.fontName = { family: "Inter", style: "Bold" }
style.fontSize = 32
style.lineHeight = { value: 40, unit: "PIXELS" }
style.letterSpacing = { value: -0.5, unit: "PIXELS" }
Effect Style
const style = figma.createEffectStyle()
style.name = "Elevation/Medium"
style.effects = [{
type: 'DROP_SHADOW',
color: { r: 0, g: 0, b: 0, a: 0.15 },
offset: { x: 0, y: 4 },
radius: 8,
spread: 0,
visible: true,
blendMode: 'NORMAL'
}]
Applying Styles to Nodes
// Apply paint style to fills
const rect = figma.createRectangle()
rect.fillStyleId = paintStyle.id
// Apply paint style to strokes
rect.strokeStyleId = strokeStyle.id
// Apply text style
if (textNode.type === "TEXT") {
textNode.textStyleId = textStyle.id
}
// Apply effect style
node.effectStyleId = effectStyle.id
// Apply grid style to frame
if (frame.type === "FRAME") {
frame.gridStyleId = gridStyle.id
}
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.
- 6d ago First seen · 159 lines · 0 tokens per session scan A 67d3e06ccf65
figma-styles is a cursor rule published in the GitHub repository hoshikitsunoda/figma-plugins-vibe-coding-template (21 stars, last pushed 8mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,060 tokens. 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-30.
Other cursor rules, from other repositories
prototype-previewer
Build interactive prototype reviewers with synced review notes and Figma capture pages.
ant-design
本规范为在 React 应用程序中使用 Ant Design (antd) UI 库的项目制定最佳实践和编码标准。涵盖代码组织、性能、安全、测试和常见陷阱,确保应用程序的可维护性和高效性。.
7-day-nextjs-web-design-cursor
A seven-day design workflow for web products that will be built in Next.js.
clone-ai
Site Clone AI — website klonlama pipeline kuralları.
mermaid
Diagram Creator. Load when the user requests "Create a diagram".
ponytail
Ponytail, lazy senior dev mode. Always pick the simplest solution that works.