web-design-guidelines

web-design-guidelines is a skill for Claude Code, Codex from ehmo/platform-design-skills. It costs 54 tokens per session (10,504 once invoked), scanned A, original, MIT.

A set of platform-neutral rules for building accessible, responsive, and fast web interfaces. It covers HTML structure, WCAG accessibility guidance, responsive layouts, web components, and browser features.

In plain words
What is it for?
Use it when building or reviewing HTML, CSS, JavaScript, web components, responsive layouts, accessibility, or web performance.
Why use it?
Web interfaces can be difficult to use with assistive technology, on small screens, or on slower devices when basic platform rules are missed. These guidelines provide checks for common usability, accessibility, and performance issues.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/ehmo/platform-design-skills/web
Any agent
npx skills add ehmo/platform-design-skills --skill web
Clone the repo
git clone --depth 1 https://github.com/ehmo/platform-design-skills

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 web-design-guidelines

README.md
[![agentmods](https://agentmods.dev/badge/skills/ehmo/platform-design-skills/web.svg)](https://agentmods.dev/skills/ehmo/platform-design-skills/web)
Your own site
<a href="https://agentmods.dev/skills/ehmo/platform-design-skills/web"><img src="https://agentmods.dev/badge/skills/ehmo/platform-design-skills/web.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 10,504 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00054 $0.10504
Opus 5 $0.00027 $0.05252
Sonnet 5 $0.00011 $0.02101
Haiku 4.5 $0.00005 $0.01050

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

Security

Grade A, and why

web-design-guidelines scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

caches.match(e.request).then(hit => hit ?? fetch(e.request))
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/web/SKILL.md · 1,455 lines

How it starts

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

Web Platform Design Guidelines

Framework-agnostic rules for accessible, performant, responsive web interfaces. Based on WCAG 2.2, MDN Web Docs, and modern web platform APIs.


1. Accessibility / WCAG [CRITICAL]

Accessibility is not optional. Most rules in this section map to WCAG 2.2 success criteria at Level A or AA. A small number of best-practice rules (noted inline) target Level AAA or go beyond WCAG.

1.1 Use Semantic HTML Elements

Use elements for their intended purpose. Semantic structure provides free accessibility, SEO, and reader-mode support.

Element Purpose
<main> Primary page content (one per page)
<nav> Navigation blocks
<header> Introductory content or navigational aids
<footer> Footer for nearest sectioning content
<article> Self-contained, independently distributable content
<section> Thematic grouping with a heading
<aside> Tangentially related content (sidebars, callouts)
<figure> / <figcaption> Illustrations, diagrams, code listings
<details> / <summary> Expandable/collapsible disclosure widget
<dialog> Modal or non-modal dialog boxes
<time> Machine-readable dates/times
<mark> Highlighted/referenced text
<address> Contact information for nearest article/body
<!-- Good -->
<main>
  <article>
    <h1>Article Title</h1>
    <p>Content...</p>
  </article>
  <aside>Related links</aside>
</main>

<!-- Bad: div soup -->
<div class="main">
  <div class="article">
    <div class="title">Article Title</div>
    <div class="content">Content...</div>
  </div>
</div>

Anti-pattern: Using <div> or <span> for interactive elements. Never write <div onclick> when <button> exists.

1.2 ARIA Labels on Interactive Elements

Every interactive element must have an accessible name. Prefer visible text; use aria-label or aria-labelledby only when visible text is insufficient (SC 4.1.2).

Read the full file on GitHub · 1,455 lines

Files

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.

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 · 1,455 lines · 54 tokens per session scan A bbdf17699240

Subscribe to this mod's changes

web-design-guidelines is a skill published in the GitHub repository ehmo/platform-design-skills (520 stars, last pushed 5mo ago), licensed MIT. It adds 54 tokens to every session and 10,504 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

Shade ShadCN install

Guardrails for running pnpm dlx shadcn@latest add in Shade — never overwrite existing components, fresh branch first, swap raw colours for semantic tokens after integrating. Trigger when the user proposes a shadcn add, or when a fresh ShadCN-shaped file lands in apps/shade/src/components/ui.

TryGhost/Ghost · 72 tokens

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

frontend-visual-qa

Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find…

daymade/claude-code-skills · 145 tokens

better-colors

Helps you build a color system and answer anything about color in your project. You can generate palettes, use semantic tokens, convert between formats, check contrast and more.

jakubkrehel/skills · 38 tokens

prototype-web

可点击的功能性 Web 原型, 含导航、英雄区、特性区、CTA.

nexu-io/html-anything · 24 tokens

design-frontend-dev

Clean Impeccable frontend design skill. Use when the user wants to design, redesign, critique, audit, polish, harden, optimize, adapt, clarify, colorize, animate, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, onboarding, empty states…

The-Vibe-Company/companion · 127 tokens