cross-browser-typography-qa

cross-browser-typography-qa is a skill for Claude Code, Codex from AtlasOmnia/donna-starter. It costs 56 tokens per session (1,939 once invoked), scanned A, original, MIT.

A testing workflow for checking whether web text renders correctly in Chromium and Safari, including clipping, wrapping, spacing, and font appearance.

In plain words
What is it for?
Use it when headings, labels, or other text look wrong across browsers or after a deployment.
Why use it?
It helps find text problems that ordinary element-size checks may miss.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when headings, labels, or other text look wrong across browsers or after a deployment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/atlasomnia/donna-starter/cross-browser-typography-qa
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 AtlasOmnia/donna-starter --skill cross-browser-typography-qa
Clone the repo
git clone --depth 1 https://github.com/AtlasOmnia/donna-starter

Made for: Claude Code, Codex.

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 cross-browser-typography-qa

README.md
[![agentmods](https://agentmods.dev/badge/skills/atlasomnia/donna-starter/cross-browser-typography-qa/github.svg)](https://agentmods.dev/skills/atlasomnia/donna-starter/cross-browser-typography-qa)
Your own site
<a href="https://agentmods.dev/skills/atlasomnia/donna-starter/cross-browser-typography-qa"><img src="https://agentmods.dev/badge/skills/atlasomnia/donna-starter/cross-browser-typography-qa/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 cross-browser-typography-qa

Your own site · 80×15
<a href="https://agentmods.dev/skills/atlasomnia/donna-starter/cross-browser-typography-qa"><img src="https://agentmods.dev/badge/skills/atlasomnia/donna-starter/cross-browser-typography-qa.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,939 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00056 $0.01939
Opus 5 $0.00028 $0.00970
Sonnet 5 $0.00011 $0.00388
Haiku 4.5 $0.00006 $0.00194

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

Security

Grade A, and why

cross-browser-typography-qa 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 5d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/software-development/cross-browser-typography-qa/SKILL.md · 144 lines

How it starts

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

Cross-Browser Typography QA

Purpose

Use this skill when web text looks clipped, flattened, wrapped incorrectly, misaligned, or materially different between Chromium and WebKit/Safari. Treat text rendering as both a geometry problem and a visual paint problem: passing DOM bounds does not prove that every glyph is intact.

Triggers

  • Lowercase descenders such as g, j, p, q, or y appear cut off.
  • Gradient or transparent text looks flattened at the baseline.
  • A heading fits within its element but still looks clipped.
  • Safari and Chromium disagree on line height, wrapping, button labels, or heavy font weights.
  • A deployed fix appears absent despite a successful upload or publish message.

Workflow

1. Reproduce the exact defect

  1. Record the browser family, viewport, font family, weight, size, and exact text.
  2. Use a string containing ascenders, rounded forms, punctuation, and descenders.
  3. Capture a focused screenshot at the reported viewport before changing CSS.
  4. Inspect the actual glyphs, not only the element rectangle.

2. Inspect layout and paint

Read computed values for:

  • font-family, font-size, font-weight, and line-height;
  • display, overflow, padding, transforms, and fixed heights;
  • background-clip, -webkit-background-clip, and -webkit-text-fill-color;
  • loaded font status and fallback-font substitution;
  • the stylesheet URL/cache marker actually active in the page.

Use Range.getClientRects() for rendered-line counts and getBoundingClientRect() for containment, but never treat either as proof that glyph paint is complete.

3. Repair the cause

Choose the smallest stable repair:

  • Treat a user's “is it meant to be sized like that?” reaction as a real visual-acceptance signal, not merely a request to confirm CSS intent. First verify the actual browser window bounds and distinguish normal viewport rendering from browser zoom or an accidentally narrow layout. If the viewport is normal but the display type dominates the first screen, make a bounded desktop-only scale/spacing adjustment while preserving explicit mobile overrides.
  • For a hero-scale correction, adjust the heading clamp() and hero padding-block together; shrinking only the type can leave the composition oddly empty. Add an exact contract assertion before the CSS change so the intended scale is durable, prove RED, then rerun five-width Chromium and native-Safari geometry plus visual inspection.
  • When the user asks to make a small, even-numbered product set “even,” prefer an equal two-column grid over editorial 7/5 nth-child spans. Encode the parity in a RED contract, remove obsolete asymmetric and breakpoint-reset rules, retain the one-column mobile override, update the stylesheet cache marker, and visually inspect paired card alignment—not only grid geometry.
  • Increase the line box on the text-bearing element when font paint exceeds a tight line box.
  • Remove fixed heights or hidden overflow that cut off glyphs.
  • Avoid synthetic or unsupported font weights when they distort metrics.
  • Rework pathological wrapping with width, balance, or explicit block structure.
  • When a semantic hyphenated term breaks awkwardly, protect only that token with an inline span using white-space: nowrap; do not force the entire heading onto one line. Keep the ordinary hyphen when exact-copy tests, translation keys, or search indexing depend on the literal string.
  • For background-clip: text, prefer line-height correction over outside padding; outside padding can enlarge the box without enlarging the painted glyph mask.
  • If a decorative gradient remains unstable, use a solid accessible text color rather than preserving a fragile effect.
  • When prose interleaves raw text with an inline emphasis element inside display: flex, wrap the entire sentence in one inline-flow child (for example, <span>Press <strong>Start Session</strong> ...</span>). Otherwise the browser can promote text fragments and the emphasis element to separate anonymous flex items, making intended spaces appear missing or incorrectly distributed. Verify the actual rendered glyph spacing in the packaged app, not only the JSX or DOM text.

Read the full file on GitHub · 144 lines

Files

What ships with it

4 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.

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. 5d ago First seen · 144 lines · 56 tokens per session scan A 46b46b770115

Subscribe to this mod's changes

cross-browser-typography-qa is a skill published in the GitHub repository AtlasOmnia/donna-starter (107 stars, last pushed 9d ago), licensed MIT. It adds 56 tokens to every session and 1,939 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

cross-browser-typography-qa

Use this skill when web text looks clipped, flattened, wrapped incorrectly, misaligned, or materially different between Chromium and WebKit/Safari. Treat text rendering as both a geometry problem and a visual paint problem: passing DOM bounds does not prove that every glyph is intact.

AtlasOmnia/hermes-custom-pack · 56 tokens

frontend-design-systems

Architect and build production-grade web interfaces with modern design systems: Tailwind CSS v4, Shadcn UI primitives, Radix UI, dark mode tokens, and accessible WCAG AA components.

pedroiff0/awesome-skills · 44 tokens

frontend-visual-verification

Confirm a CSS/HTML/template change actually rendered in a running browser — without being fooled by stale browser cache. Use whenever you edited frontend code (CSS, EJS/HTML, components) and must verify the visual result, especially when a vision screenshot seems to contradict the DOM or the served asset.

pedroiff0/awesome-skills · 66 tokens

inspecting-hermes-desktop-dom

When you are developing apps/desktop and the user is running that same app (hgui / npm run dev), you can read the live rendered DOM of the window they are looking at — computed styles, geometry, which CSS rule actually won, console output — instead of inferring it from .tsx and being wrong.

AtlasOmnia/hermes-custom-pack · 28 tokens

popular-web-designs

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

cyborg-garden/hermes-agent-mt · 23 tokens

popular-web-designs

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

MilkyWay008/Hermes-OTG · 23 tokens