cross-browser-typography-qa

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

A testing workflow for web text that looks clipped, wrapped incorrectly, misaligned, or different between Chromium-based browsers and Safari. It checks both the text's layout and the way individual letters are painted.

In plain words
What is it for?
Use it to investigate broken typography, line-height, font-weight, wrapping, and cross-browser screenshots. It is especially useful for headings and text containing letters such as g, j, p, q, and y.
Why use it?
It catches visual problems that ordinary element-size checks may miss, such as cut-off descenders or flattened transparent text. It helps explain why a fix may appear in one browser but not another.

Skill for Claude CodeCodex

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

Good fit Use it to investigate broken typography, line-height, font-weight, wrapping, and cross-browser screenshots. It is especially useful for headings and text containing letters such as g, j, p, q, and y.

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

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/hermes-custom-pack/cross-browser-typography-qa/github.svg)](https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/cross-browser-typography-qa)
Your own site
<a href="https://agentmods.dev/skills/atlasomnia/hermes-custom-pack/cross-browser-typography-qa"><img src="https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/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/hermes-custom-pack/cross-browser-typography-qa"><img src="https://agentmods.dev/badge/skills/atlasomnia/hermes-custom-pack/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.
Origin 100% copy Near-identical to another mod 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 9d 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 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.

Origin

This is a copy

100% identical to cross-browser-typography-qa — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/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. 9d 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/hermes-custom-pack (56 stars, last pushed 25d 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. It is 100% identical to cross-browser-typography-qa, differing in 0 lines, and is treated as a copy.

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/donna-starter · 56 tokens

dogfood

This skill guides you through systematic exploratory QA testing of web applications using the browser toolset. You will navigate the application, interact with elements, capture evidence of issues, and produce a structured bug report.

AtlasOmnia/donna-starter · 20 tokens

playwright-expert

Expert in Playwright E2E testing framework, auto-waiting mechanisms, test generation, trace viewer, and CI/CD integration. Use when the user mentions testing, end-to-end tests, QA, automation, end-to-end testing, or test automation, or when the task involves Playwright Framework, Test Organization, Advanced Features…

personamanagmentlayer/pcl · 77 tokens

playwright-browser-automation

Run automated headless browser testing, scrape dynamic SPAs, capture high-resolution full-page screenshots, and perform visual regression testing with Playwright.

pedroiff0/awesome-skills · 34 tokens

playwright-best-practices

Use when writing Playwright tests, fixing flaky tests, debugging failures, implementing Page Object Model, configuring CI/CD, optimizing performance, mocking APIs, handling authentication or OAuth, testing accessibility (axe-core), file uploads/downloads, date/time mocking, WebSockets, geolocation, permissions…

firstsun-dev/skills · 214 tokens

agent-browser

Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.

danstrem2/clawdbot-skill-master-pack · 51 tokens