tokens

tokens is a skill for Claude Code from dkadts/landing-kit-building. It costs 40 tokens per session (1,064 once invoked), scanned A, original, MIT.

A generator that turns a locked design specification and animation brief into CSS variables in site/css/tokens.css. CSS variables store reusable values such as spacing, colors, and motion settings.

In plain words
What is it for?
Use it after the design specification is marked locked or after animation decisions change. It reads DESIGN-LOCK.md and brief/animation.md, then updates the project's design tokens.
Why use it?
It keeps the site's implementation tied to approved design decisions and stops token generation while required design choices are unfinished.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it after the design specification is marked locked or after animation decisions change. It reads DESIGN-LOCK.md and brief/animation.md, then updates the project's design tokens.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dkadts/landing-kit-building/tokens
Install

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.

Any agent
npx skills add dkadts/landing-kit-building --skill tokens
Clone the repo
git clone --depth 1 https://github.com/dkadts/landing-kit-building

Made for: Claude Code.

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 tokens

README.md
[![agentmods](https://agentmods.dev/badge/skills/dkadts/landing-kit-building/tokens/github.svg)](https://agentmods.dev/skills/dkadts/landing-kit-building/tokens)
Your own site
<a href="https://agentmods.dev/skills/dkadts/landing-kit-building/tokens"><img src="https://agentmods.dev/badge/skills/dkadts/landing-kit-building/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.

agentmods 80×15 button for tokens

Your own site · 80×15
<a href="https://agentmods.dev/skills/dkadts/landing-kit-building/tokens"><img src="https://agentmods.dev/badge/skills/dkadts/landing-kit-building/tokens.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,064 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.00040 $0.01064
Opus 5 $0.00020 $0.00532
Sonnet 5 $0.00008 $0.00213
Haiku 4.5 $0.00004 $0.00106

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

Security

Grade A, and why

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 10d 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.

.claude/skills/tokens/SKILL.md · 103 lines

How it starts

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

/tokens

Turns the frozen DESIGN-LOCK.md constitution and the brief/animation.md motion spec into CSS variables in site/css/tokens.css.

When to use

  • Immediately after /design-lock (DESIGN-LOCK.md has LOCKED status on all sections).
  • After /animation (motion tokens are added).
  • When DESIGN-LOCK is changed via override (regenerate tokens).

Requirements — HARD BLOCKING

Refuse to work if any DESIGN-LOCK field is TBD or any section is not LOCKED:

❌ Cannot generate tokens.
DESIGN-LOCK.md → §3 Color: STATUS = TBD.
Run /design-lock to complete.

Also refuse if brief/animation.md is missing (needed for motion tokens).

Process

Step 1. Read DESIGN-LOCK.md Ensure all 9 sections are STATUS: LOCKED and no value is TBD.

Step 2. Read brief/animation.md Load motion decisions (intensity multiplier, stagger, computed durations).

Step 3. Read site/css/tokens.css Existing template — do not rewrite everything, update values.

Step 4. Map DESIGN-LOCK → tokens.css

Explicit mapping:

DESIGN-LOCK tokens.css
§1 Spacing → base unit --space-base
§1 Spacing → rhythm N× --space-1, --space-2, ..., --space-13
§1 Section padding top/bottom --section-pad-top, --section-pad-bottom
§1 Content max-width --content-max-w
§1 Page margin left/right --page-padding-x
§2 Type → font families --font-heading, --font-body, --font-mono
§2 Type → sizes --fs-body, --fs-h1, --fs-h2, --fs-h3, --fs-caption
§2 Type → line-height --lh-body, --lh-heading
§2 Type → weights --fw-body, --fw-heading
§3 Color --c-bg, --c-fg, --c-fg-muted, --c-accent, --c-border, --c-overlay
§3 Color → semantic --c-success, --c-error, --c-warning
§4 Radius --radius (ONE value!)
§5 Motion → ease --ease, --ease-in, --ease-out
§5 Motion → duration --dur-fast, --dur-base, --dur-slow
§5 Motion → scroll-behavior (from /animation) --scroll-reveal
§5 Motion → stagger-base-ms (from /animation) --stagger-base-ms
§5 Motion → motion-multiplier (from /animation) --motion-multiplier

Read the full file on GitHub · 103 lines

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 · 103 lines · 40 tokens per session scan A 917e4d5540dc

Subscribe to this mod's changes

tokens is a skill published in the GitHub repository dkadts/landing-kit-building (2 stars, last pushed 21d ago), licensed MIT. It adds 40 tokens to every session and 1,064 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

frontend-design

Visual and UX design quality for interfaces: hierarchy, spacing rhythm, typographic scale, a restrained color system, layout composition, and polished states. The taste layer above frontend architecture and a11y.

byerlikaya/claude-starter-kit · 44 tokens

web-design-guidelines

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".

agustinusnathaniel/nextarter-tailwind · 44 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI).…

agustinusnathaniel/nextarter-tailwind · 77 tokens

claude-design

Design one-off HTML artifacts (landing, deck, prototype).

NousResearch/hermes-agent · 16 tokens

popular-web-designs

54 real design systems (Stripe, Linear, Vercel) as HTML/CSS.

NousResearch/hermes-agent · 23 tokens

scroll-craft

Build premium scroll-driven landing pages for service, product, food, and drink brands. Plan the visitor journey, page grammar, emotional peak, and bespoke signature move. Create dimensional heroes with independent visual planes, restrained motion, and separate mobile composition. Use supplied photos and footage or…

nateherkai/scroll-craft · 177 tokens