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 globalize-now/globalize-skills --skill css-i18ngit clone --depth 1 https://github.com/globalize-now/globalize-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/globalize-now/globalize-skills/css-i18n)<a href="https://agentmods.dev/skills/globalize-now/globalize-skills/css-i18n"><img src="https://agentmods.dev/badge/skills/globalize-now/globalize-skills/css-i18n/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/globalize-now/globalize-skills/css-i18n"><img src="https://agentmods.dev/badge/skills/globalize-now/globalize-skills/css-i18n.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.00123 | $0.02694 |
| Opus 5 | $0.00062 | $0.01347 |
| Sonnet 5 | $0.00025 | $0.00539 |
| Haiku 4.5 | $0.00012 | $0.00269 |
Grade A, and why
css-i18n 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 9d 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 — 262 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CSS Internationalization
Convert physical CSS properties (left, right, margin-left) to logical equivalents (inset-inline-start, margin-inline-start) so layouts flip automatically in RTL contexts.
Why this matters: Physical properties are anchored to the viewport, not the text direction. A margin-left: 16px stays on the left even when dir="rtl" — breaking the visual flow for Arabic, Hebrew, and other RTL scripts. Logical properties follow the text direction automatically.
Step 1: Detect Styling Approach
Determine how the project writes CSS. This decides which patterns to scan for and which reference file to follow.
Check in order:
- Tailwind CSS —
tailwind.config.*exists, or@tailwind/@import "tailwindcss"appears in CSS files. Seereferences/tailwind.md. - CSS Modules — files matching
*.module.cssor*.module.scss. Seereferences/css-modules-and-vanilla.md. - CSS-in-JS — imports from
styled-components,@emotion/styled,@emotion/css,stitches,vanilla-extract. Follow the same property mappings as vanilla CSS, but in camelCase (see Step 2 inline styles section). - Vanilla CSS — plain
.cssor.scssfiles. Seereferences/css-modules-and-vanilla.md. - Inline styles —
style={{ marginLeft: ... }}in JSX/TSX. Follow camelCase mappings in Step 2.
Projects often use multiple approaches. Scan for all that apply.
Step 2: Scan and Convert
Work file-by-file. For each file, find physical directional properties and convert them to logical equivalents.
Always convert (high confidence)
These are safe to convert in virtually all cases:
Margin and padding
| Physical | Logical |
|---|---|
margin-left |
margin-inline-start |
margin-right |
margin-inline-end |
padding-left |
padding-inline-start |
padding-right |
padding-inline-end |
Shorthands with explicit left/right values:
/* Before — 4-value shorthand: top right bottom left */
margin: 0 24px 0 16px;
/* After — use longhand logical properties */
margin-block: 0;
margin-inline-start: 16px;
margin-inline-end: 24px;
What ships with it
3 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.
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.
- 9d ago First seen · 262 lines · 123 tokens per session scan A 566eb4301d92
css-i18n is a skill published in the GitHub repository globalize-now/globalize-skills (3 stars, last pushed 2d ago), licensed MIT. It adds 123 tokens to every session and 2,694 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
extract-source-sample
Given the path to a finished content-goose ad-run folder, extract everything that defines that ad — recipe shot list, VO script, characters, voices, world, atom-skills, master mp4 — and emit a source-sample.json in the exact shape the upload-ad-sample skill writes to the Goose Ads library. Also links every character…
render-ios-keyboard
Render a static iOS QWERTY keyboard as inline HTML+CSS sized for the 750-wide 9:16 stage. Includes the 3-suggestion bar, alpha keys, shift/backspace, 123/emoji/space/return row, and the bottom globe+mic strip. No animation logic — slide up/down is the molecule's job (CSS transform on the .keyboard root).
interaction-skill
Layer A interaction-mechanics reference anchored to the beui.dev catalog. Stacks on any style skill whenever work adds or changes motion or interaction — micro-interactions, animated components, transitions, gestures, hover/press/state feedback, loading/success/error morphs, 'make it feel alive'. Mandates reading the…
layout-skill
Layer A layout-mechanics reference. Stacks on any style skill when the screen is an app shell, dashboard, settings, list-detail, mail/inbox, or any layout with fixed regions plus a scrolling body — or when a layout breaks under long, empty, or unbroken content. Owns spatial structure and scroll ownership; owns zero…
accessibility-audit
Conduct accessibility audits against WCAG 2.2 guidelines. Evaluate pages, components, and flows for conformance at A, AA, and AAA levels. Identify issues, assess severity, provide code fixes, and generate audit reports. Covers automated testing, manual testing, keyboard navigation, screen reader compatibility, color…
enhance-web-landing
Build landing pages, portfolios, and marketing sites that don't look AI-generated. Use when asked for "landing page", "portfolio", "marketing site", "anti-slop", "Awwwards-style", "premium frontend", or when design needs a strong point of view.