frontend-design

frontend-design is a skill for Claude Code from AnastasiyaW/codex-claude-code-config. It costs 264 tokens per session (1,342 once invoked), scanned A, original, MIT.

A design guide for building polished web interfaces such as pages, dashboards, forms, navigation, and reusable UI components. It covers HTML, CSS, JavaScript, and common frontend frameworks.

In plain words
What is it for?
Use it when creating or improving websites, landing pages, dashboards, forms, component libraries, or other browser-based interfaces.
Why use it?
It helps turn a functional web interface into a clear, consistent visual design with sensible layout, typography, spacing, accessibility, performance, and search visibility.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the claude-code-config plugin — 57 skills, 8 agents shipped together

Good fit Use it when creating or improving websites, landing pages, dashboards, forms, component libraries, or other browser-based interfaces.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anastasiyaw/codex-claude-code-config/frontend-design
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 AnastasiyaW/codex-claude-code-config --skill frontend-design
Clone the repo
git clone --depth 1 https://github.com/AnastasiyaW/codex-claude-code-config

Made for: Claude Code.

Or install claude-code-config, the plugin that ships this one along with the rest of its 57 skills, 8 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/anastasiyaw/codex-claude-code-config/frontend-design.svg)](https://agentmods.dev/skills/anastasiyaw/codex-claude-code-config/frontend-design)
Your own site
<a href="https://agentmods.dev/skills/anastasiyaw/codex-claude-code-config/frontend-design"><img src="https://agentmods.dev/badge/skills/anastasiyaw/codex-claude-code-config/frontend-design.svg" alt="Measured on agentmods" height="20"></a>
Per session 264 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,342 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium analysis-evasion · line 1
    Suspicious Unicode normalization or mixed-script content
    Fix: Review the flagged content for security risks. Ensure no credentials, secrets, or sensitive data are exposed.
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.00264 $0.01342
Opus 5 $0.00132 $0.00671
Sonnet 5 $0.00053 $0.00268
Haiku 4.5 $0.00026 $0.00134

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

Security

Grade A, and why

frontend-design 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 8d 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.

skills/frontend/frontend-design/SKILL.md · 131 lines

How it starts

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

Frontend Design Skill

Этот скилл — о создании визуально выдающихся интерфейсов. Не просто рабочих — а таких, где дизайн говорит сам за себя. Основной принцип: каждый интерфейс должен выглядеть как работа senior-дизайнера, а не как «шаблон из интернета».

Навигация по reference-файлам

Тема Файл
Верстка, CSS, адаптив, Flexbox/Grid references/layout-css.md
Визуальные стили, цвет, типографика, эффекты references/visual-styles.md
Компоненты, фреймворки, React/Vue/Tailwind references/components-frameworks.md
Производительность, доступность, SEO references/performance-a11y.md

Читай нужный reference-файл перед тем как писать код.


Золотые правила хорошего UI

1. Иерархия важнее красоты

Пользователь должен за 3 секунды понять: что это, что важно, что делать.

  • Один главный акцент на экране
  • Размер и вес текста = важность информации
  • Пустое пространство — не «пустое», а воздух для восприятия

2. Консистентность убивает хаос

  • Один радиус скругления на весь интерфейс (4/8/12/16px)
  • Одна шкала отступов (4px / 8px / 12px / 16px / 24px / 32px / 48px / 64px)
  • Максимум 2 шрифта: заголовочный + основной
  • Максимум 3 цвета: основной, акцентный, нейтральный

3. Детали создают профессионализм

/* Плохо — резкие переходы */
button { background: blue; }
button:hover { background: darkblue; }

/* Хорошо — всё плавно */
button {
  background: #3b82f6;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
button:hover {
  background: #2563eb;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
  transform: translateY(-1px);
}

4. Mobile-first — не опция, а стандарт

Начинай с мобильного экрана, расширяй для десктопа.


Быстрые рецепты по стилям

Современный минимализм (2024-2025 тренд)

:root {
  --bg: #0f0f11;
  --surface: #1a1a1f;
  --border: rgba(255,255,255,0.08);
  --text: #e4e4e7;
  --muted: #71717a;
  --accent: #6366f1;
}

Glassmorphism

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

Read the full file on GitHub · 131 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. 8d ago First seen · 131 lines · 264 tokens per session scan A f999c6e7198f

Subscribe to this mod's changes

frontend-design is a skill published in the GitHub repository AnastasiyaW/codex-claude-code-config (149 stars, last pushed yesterday), licensed MIT. It adds 264 tokens to every session and 1,342 once invoked, about $0.0013 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.