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 Tyler-R-Kendrick/agent-skills --skill design-tokensgit clone --depth 1 https://github.com/Tyler-R-Kendrick/agent-skillsWrote 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/tyler-r-kendrick/agent-skills/design-tokens)<a href="https://agentmods.dev/skills/tyler-r-kendrick/agent-skills/design-tokens"><img src="https://agentmods.dev/badge/skills/tyler-r-kendrick/agent-skills/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/tyler-r-kendrick/agent-skills/design-tokens"><img src="https://agentmods.dev/badge/skills/tyler-r-kendrick/agent-skills/design-tokens.svg" alt="Reviewed on agentmods" width="80" 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.00118 | $0.01969 |
| Opus 5 | $0.00059 | $0.00984 |
| Sonnet 5 | $0.00024 | $0.00394 |
| Haiku 4.5 | $0.00012 | $0.00197 |
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 12d 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 — 248 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Design Tokens — W3C DTCG Format
Overview
The W3C Design Tokens Community Group (DTCG) specification defines a vendor-neutral JSON format for exchanging design tokens across tools and platforms. The first stable version (2025.10) provides a production-ready standard adopted by Style Dictionary, Tokens Studio, Figma, and others.
File Conventions
- MIME type:
application/design-tokens+json(orapplication/json) - Extensions:
.tokensor.tokens.json - Encoding: UTF-8 JSON
Token Structure
Every token is a JSON object with a $value property. The key becomes the token name:
{
"color-primary": {
"$value": "#3b82f6",
"$type": "color",
"$description": "Primary brand color"
}
}
Token Properties
| Property | Required | Description |
|---|---|---|
$value |
Yes | The token's value |
$type |
No | Token type (inherited from parent group if omitted) |
$description |
No | Human-readable purpose |
$deprecated |
No | true or a string explaining why |
$extensions |
No | Vendor metadata (reverse domain notation) |
Token Types
Primitive Types
{
"brand-blue": {
"$value": "#3b82f6",
"$type": "color"
},
"space-md": {
"$value": { "value": 16, "unit": "px" },
"$type": "dimension"
},
"font-sans": {
"$value": ["Inter", "system-ui", "sans-serif"],
"$type": "fontFamily"
},
"weight-bold": {
"$value": 700,
"$type": "fontWeight"
},
"duration-fast": {
"$value": { "value": 150, "unit": "ms" },
"$type": "duration"
},
"ease-out": {
"$value": [0, 0, 0.2, 1],
"$type": "cubicBezier"
},
"line-height-normal": {
"$value": 1.5,
"$type": "number"
}
}
Composite Types
{
"shadow-md": {
"$value": {
"color": "#00000026",
"offsetX": { "value": 0, "unit": "px" },
"offsetY": { "value": 4, "unit": "px" },
"blur": { "value": 8, "unit": "px" },
"spread": { "value": 0, "unit": "px" }
},
"$type": "shadow"
},
"border-default": {
"$value": {
"color": "#d1d5db",
"width": { "value": 1, "unit": "px" },
"style": "solid"
},
"$type": "border"
},
"heading-lg": {
"$value": {
"fontFamily": "{font-sans}",
"fontSize": { "value": 24, "unit": "px" },
"fontWeight": 700,
"lineHeight": 1.25
},
"$type": "typography"
},
"transition-default": {
"$value": {
"duration": { "value": 200, "unit": "ms" },
"delay": { "value": 0, "unit": "ms" },
"timingFunction": [0.4, 0, 0.2, 1]
},
"$type": "transition"
},
"gradient-brand": {
"$value": [
{ "color": "#3b82f6", "position": 0 },
{ "color": "#8b5cf6", "position": 1 }
],
"$type": "gradient"
}
}
What ships with it
12 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.
- AGENTS.md 5.8 KB
- metadata.json 821 B
- README.md 669 B
- rules/_sections.md 1.5 KB
- rules/_template.md 372 B
- rules/design-tokens-add-description-to-non-obvious-tokens-so-designers-and.md 388 B
- rules/design-tokens-organize-tokens-into-global-semantic-component-tiers-so.md 406 B
- rules/design-tokens-set-type-on-groups-rather-than-individual-tokens-to.md 357 B
- rules/design-tokens-use-aliases-extensively.md 293 B
- rules/design-tokens-use-deprecated-with-a-migration-message-before-removing.md 391 B
- rules/design-tokens-use-the-w3c-dtcg-format.md 322 B
- rules/design-tokens-validate-token-files-against-the-dtcg-spec-before.md 405 B
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.
- 12d ago First seen · 248 lines · 118 tokens per session scan A d6d7c5f4efea
design-tokens is a skill published in the GitHub repository Tyler-R-Kendrick/agent-skills (11 stars, last pushed 3mo ago), licensed MIT. It adds 118 tokens to every session and 1,969 once invoked, about $0.0006 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.
Other skills, from other repositories
chakra-ui-builder
Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…
visual-ralph
Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ultragoal with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.
frontend-ui-dark-ts
Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces with a refined dark aesthetic.
reveal-hover-effect
Build cursor-following spotlight reveals that expose a second aligned image through a soft radial mask. Use for hover-to-color, before-and-after, x-ray, material, texture, product-detail, and illustrated hero effects where a desaturated or embossed base image should remain visible while another treatment follows an…
frontend-visual-qa
Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find…
prototype-web
A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.