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 skills add clubpay/ronykit --skill design-tokensgit clone --depth 1 https://github.com/clubpay/ronykitWrote 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/skills/clubpay/ronykit/design-tokens)<a href="https://agentmods.dev/skills/clubpay/ronykit/design-tokens"><img src="https://agentmods.dev/badge/skills/clubpay/ronykit/design-tokens/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.
<a href="https://agentmods.dev/skills/clubpay/ronykit/design-tokens"><img src="https://agentmods.dev/badge/skills/clubpay/ronykit/design-tokens.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 133 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.00079 | $0.01863 |
| Opus 5 | $0.00039 | $0.00932 |
| Sonnet 5 | $0.00016 | $0.00373 |
| Haiku 4.5 | $0.00008 | $0.00186 |
Grade A, and why
design-tokens 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 11d 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 — 196 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Design Tokens
Tokens are the single source of truth for every visual value. The goal is that
a component never contains a raw #2563EB or 16px — it references a named
token, so a theme change or rebrand is one edit, not a find-and-replace across
the codebase.
The discipline is three layers: raw values, what they mean, and how a component consumes them. Skipping the middle layer is why most token systems can't switch themes.
When to use
- Standing up a new design system, or refactoring flat/ad-hoc tokens.
- Naming and organizing color, spacing, radius, shadow, type, motion values.
- Wiring tokens into Tailwind / shadcn, or enabling light/dark theming.
- Reviewing UI that hard-codes hex/px instead of referencing tokens.
For consuming shadcn/ui's generated variables and CLI, see shadcn; for
color discipline in data UIs, see dashboard-ui; for type scales and
hierarchy, see typography. This skill governs the token architecture those
build on.
The three layers
Component --button-bg, --card-padding per-component overrides
↑
Semantic --color-primary, --spacing-section purpose-based aliases
↑
Primitive --color-blue-600, --space-4 raw, meaningless values
| Layer | Holds | Changes when… |
|---|---|---|
| Primitive | Raw scales (the palette/ramp) | Rarely — foundational |
| Semantic | Meaning (primary, background) | Theme / brand switch |
| Component | One component's knobs | A component needs it |
Rule: primitives never appear in components, and semantics never hold raw values. A component reads a component or semantic token; a semantic token reads a primitive; a primitive is the only place a literal lives.
1. Primitive — raw values, no meaning
Full numeric ramps so the semantic layer always has a rung to point at. Use a 4px-based spacing scale and a consistent type/radius/shadow scale.
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.
- 11d ago First seen · 196 lines · 79 tokens per session scan A f64d96547ab2
design-tokens is a skill published in the GitHub repository clubpay/ronykit (38 stars, last pushed 4d ago), licensed BSD-3-Clause. It adds 79 tokens to every session and 1,863 once invoked, about $0.0004 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-30.
Other skills, from other repositories
multitenant
Multi-tenant / multitenancy patterns in Vovk.ts — hosting multiple tenants from one Next.js app via subdomain routing. Covers the multitenant() helper from vovk, the Next.js proxy.ts file that wires it up, the overrides shape (static / dynamic / nested subdomain patterns), the vovk.config.mjs changes needed (switch to…
writing-clearly-and-concisely
Apply whenever writing content a human will read — emails, documents, reports, documentation, messages, UI copy, commit messages, explanations, or any other prose. Applies Strunk's timeless rules for clearer, stronger, more professional writing.
gentleman-bubbletea
Bubbletea TUI patterns for Gentleman.Dots installer. Trigger: When editing Go files in installer/internal/tui/, working on TUI screens, or adding new UI features.
remotion-animation
Generates animation configurations for Remotion including spring configs, interpolations, easing functions, and timing logic. Focuses ONLY on animation parameters, NOT component implementation. Use when defining animation behavior or when asked to "configure animations", "setup spring configs", "define easing curves".
create-remotion-geist
Create Remotion videos using the Geist design system aesthetic. Use when asked to create videos, animations, or motion graphics that should follow Vercel's visual style - dark theme, spring animations, Geist typography, and the Geist color palette.
ast-introspection
Use Go AST-aware analysis to enumerate symbols, extract signatures, and propose mechanically safe refactors (read-only by default).