ontology-atlas: Skill for Claude Code

.agents/skills/design-audit/SKILL.md

design-audit is a skill for Claude Code, Codex from wlsdks/ontology-atlas. It costs 26 tokens per session (1,447 once invoked), scanned A, original, MIT.

A frontend audit that measures rendered element positions and computed styles, then uses screenshots as evidence for any detected layout problems. Computed styles are the final visual rules applied by the browser.

In plain words
What is it for?
Use it after frontend changes to check a fixed browser state for overlaps, reachability, spacing, and other visual defects; skip it for copy-only or logic-only work.
Why use it?
It turns vague impressions about spacing, alignment, overlap, or hidden elements into measurable findings and reduces false bug reports.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is wlsdks/ontology-atlas's own configuration. It tells Claude Code and Codex how to work on ontology-atlas itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ontology-atlas configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/serve-static-export.mjs --port=4173 &.

Reuse

Borrowing it

Nothing to install: this file belongs to wlsdks/ontology-atlas. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/wlsdks/ontology-atlas/main/.agents/skills/design-audit/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/wlsdks/ontology-atlas

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 design-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/wlsdks/ontology-atlas/design-audit/github.svg)](https://agentmods.dev/skills/wlsdks/ontology-atlas/design-audit)
Your own site
<a href="https://agentmods.dev/skills/wlsdks/ontology-atlas/design-audit"><img src="https://agentmods.dev/badge/skills/wlsdks/ontology-atlas/design-audit/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 design-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/wlsdks/ontology-atlas/design-audit"><img src="https://agentmods.dev/badge/skills/wlsdks/ontology-atlas/design-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,447 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.00026 $0.01447
Opus 5 $0.00013 $0.00724
Sonnet 5 $0.00005 $0.00289
Haiku 4.5 $0.00003 $0.00145

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

Security

Grade A, and why

design-audit 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 3d 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.

.agents/skills/design-audit/SKILL.md · 152 lines

How it starts

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

Measure a finished UI change

People and models localize small spacing, alignment, and overlap defects poorly by sight. An unlocalized feeling cannot become a reliable fix, while imagined defects damage healthy code. The fixed order is: measure → list violations → attach screenshots as evidence.

Run only when pnpm design:route includes design-audit. Audit its returned scope: one affected state for a local change, affected map state for topology, or the full surface for a structural change. Copy-only, pure logic, motion-only, and topology-gesture-only work use their own routed proof.

0. Fix the state

Use a fixed viewport and dataset, wait for fonts and one explicit ready element, move the pointer off interactive targets, and use reduced motion for a static audit. Do not use networkidle as the default readiness signal; hydration can still be incomplete.

Add ?guides=off. Closing a first-run guide manually changes focus and adds its own motion. Use ?guides=reset only when auditing the guide. Playwright may call the shared seedFirstRunSeen(page) helper.

1. Overlap and reachability

Filter to painted elements

A non-zero rect does not mean the element is painted. Children inside a closed <details> retain visible styles and a healthy rect while absent from the screen. The first audit without this filter produced three false findings.

const painted = (el) => {
  const c = getComputedStyle(el);
  const b = el.getBoundingClientRect();
  if (b.width < 1 || b.height < 1) return false;
  if (c.visibility === 'hidden' || c.display === 'none' || Number(c.opacity) < 0.05) return false;
  if (el.closest('details:not([open])')) return false;
  for (let n = el.parentElement; n && n !== document.body; n = n.parentElement) {
    const nc = getComputedStyle(n);
    const r = n.getBoundingClientRect();
    if (nc.overflow !== 'visible' && (b.bottom < r.top || b.top > r.bottom)) return false;
    if (nc.contentVisibility === 'hidden' || n.hasAttribute('inert')) return false;
  }
  return b.top < innerHeight && b.bottom > 0 && b.left < innerWidth && b.right > 0;
};

Read the full file on GitHub · 152 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. 3d ago Changed eae674bfa380
  2. 8d ago Changed · +14 lines a3869109aa02
  3. 12d ago First seen · 138 lines · 26 tokens per session scan A adfa98b48c4d

Subscribe to this mod's changes

design-audit is a skill published in the GitHub repository wlsdks/ontology-atlas (104 stars, last pushed today), licensed MIT. It adds 26 tokens to every session and 1,447 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

web-prototype

General-purpose desktop web prototype. Single self-contained HTML file built by copying the seed assets/template.html and pasting section layouts from references/layouts.md. Default for any landing / marketing / docs / SaaS page when no more specific skill matches.

nexu-io/open-design · 59 tokens

velar-luxury-real-estate

Use this plugin when the user wants a high-end luxury real-estate / architecture landing page with cinematic scroll choreography: a typewriter preloader that lifts away, a scroll-driven house image that rises from below and scales up while pinning to a dark statement section, a sticky dark stats band with count-up…

nexu-io/open-design · 119 tokens

mockup-device-3d

Static iPhone and MacBook 3D-style showcase with real HTML embedded on screens, glass-lens refraction, and 360-degree turntable composition.

nexu-io/open-design · 39 tokens

web-prototype-taste-brutalist

Swiss industrial-print web prototype. Newsprint canvas, monolithic black grotesque, viewport-bleeding numerals, hairline grid dividers, hazard-red accent, ASCII syntax decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Swiss Industrial Print mode).

nexu-io/open-design · 70 tokens

web-prototype-taste-editorial

Editorial-minimalist web prototype. Warm monochrome canvas, serif display + grotesque body, 1px hairline borders, muted pastel chips, generous macro-whitespace, ambient micro-motion. Distilled from Leonxlnx/taste-skill minimalist-skill.

nexu-io/open-design · 64 tokens

web-prototype-taste-soft

Apple-tier soft web prototype. Silver/cream canvas, double-bezel cards, button-in-button CTAs, generous squircle radii, spring motion, ambient mesh. Distilled from Leonxlnx/taste-skill soft-skill + sections 4–8 of taste-skill.

nexu-io/open-design · 69 tokens