css-styling-expert

css-styling-expert is an agent for Claude Code from GoogilyBoogily/googilyboogily-claude-power-tools. It costs 51 tokens per session (1,284 once invoked), scanned A, original, MIT.

A specialist for organizing CSS and fixing the way web pages look and respond across screen sizes and browsers.

In plain words
What is it for?
Use it for CSS layouts, responsive designs, CSS-in-JS performance, themes, design tokens, and cross-browser visual problems.
Why use it?
It helps resolve layout bugs, responsive-design problems, styling architecture issues, and CSS performance concerns.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the frontend-agents plugin — 3 agents shipped together

Good fit Use it for CSS layouts, responsive designs, CSS-in-JS performance, themes, design tokens, and cross-browser visual problems.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/googilyboogily/googilyboogily-claude-power-tools/css-styling-expert
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.

Clone the repo
git clone --depth 1 https://github.com/GoogilyBoogily/googilyboogily-claude-power-tools

Made for: Claude Code.

Or install frontend-agents, the plugin that ships this one along with the rest of its 3 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 css-styling-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/googilyboogily/googilyboogily-claude-power-tools/css-styling-expert/github.svg)](https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/css-styling-expert)
Your own site
<a href="https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/css-styling-expert"><img src="https://agentmods.dev/badge/agents/googilyboogily/googilyboogily-claude-power-tools/css-styling-expert/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 css-styling-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/css-styling-expert"><img src="https://agentmods.dev/badge/agents/googilyboogily/googilyboogily-claude-power-tools/css-styling-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,284 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 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.00051 $0.01284
Opus 5 $0.00026 $0.00642
Sonnet 5 $0.00010 $0.00257
Haiku 4.5 $0.00005 $0.00128

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

Security

Grade A, and why

css-styling-expert 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.

plugins/frontend-agents/agents/css-styling-expert.md · 119 lines

How it starts

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

CSS Styling Expert

You are a CSS architecture and styling expert. You solve layout bugs, design responsive systems, optimize CSS performance, and implement design tokens/themes.

Step 0: Route or Stay

Before working, check if another agent is a better fit:

  • Webpack/Vite CSS pipeline issues → webpack-expert or vite-expert
  • Deep React component styling patterns → react-expert
  • WCAG compliance / screen reader testing → accessibility-expert
  • General performance profiling (not CSS-specific) → performance-engineer
  • Linting config (stylelint setup) → linting-expert

Output: "This requires [X] expertise. Please invoke the [agent-name] agent. Stopping here." Then STOP.

Boundary: When to Stop or Hand Off Mid-Task

  • You fixed the CSS issue and validated it → STOP. Do not refactor unrelated code.
  • The root cause is a JS rendering bug, not CSS → hand off to react-expert or nextjs-expert.
  • You need build config changes to fix the issue → hand off to vite-expert or webpack-expert.
  • The issue is purely a11y (contrast ratios, ARIA, focus management) → hand off to accessibility-expert.

Step 1 — Detect CSS Architecture

Use Read/Grep/Glob first; shell commands are fallbacks.

# Methodology detection
grep -r "class.*__.*--" src/ | head -5          # BEM
grep -r "\.module\.css" src/ | head -3           # CSS Modules
grep -E "(styled-components|emotion|stitches)" package.json  # CSS-in-JS
grep -E "(tailwind|bootstrap)" package.json      # Frameworks
cat .browserslistrc 2>/dev/null || grep browserslist package.json

Adapt to whatever methodology the project uses. Do not impose a different one.

Step 2 — Solve by Category

Layout Debugging (Flexbox / Grid / Overflow)

  • Overflow on mobile: look for fixed width: Npx → replace with min(), %, or vw. Add flex-wrap: wrap to flex containers.
  • Grid overlap: verify explicit grid-template-columns/rows. Use Chrome DevTools grid overlay.
  • Z-index wars: audit stacking contexts — position, opacity < 1, transform, will-change all create new ones. Establish a z-index scale via custom properties.
  • Specificity conflicts: !important proliferation means the selector strategy is broken. Flatten with BEM or CSS Modules scope. Check computed styles in DevTools.

Read the full file on GitHub · 119 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. 9d ago First seen · 119 lines · 51 tokens per session scan A b0a470c23925

Subscribe to this mod's changes

css-styling-expert is an agent published in the GitHub repository GoogilyBoogily/googilyboogily-claude-power-tools (2 stars, last pushed 4mo ago), licensed MIT. It adds 51 tokens to every session and 1,284 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 agents, from other repositories

a11y-auditor

Accessibility audit of UI — keyboard navigation, focus-visible, APCA contrast, ARIA roles and labels, touch targets, and reduced-motion. Use to audit a diff, file, or surface for accessibility issues.

educlopez/ui-craft · 49 tokens

ui-developer

Use this agent when you need to implement or fix UI components based on design references or designer feedback. This agent is a senior UI/UX developer specializing in pixel-perfect implementation with React, TypeScript, and Tailwind CSS. Trigger this agent in these scenarios:\n\n \nContext: Designer has reviewed…

MadAppGang/claude-code · 338 tokens

gem-designer

UI/UX design specialist — layouts, themes, color schemes, design systems, accessibility.

KIMISKI33/awesome-copilot · 22 tokens

design-performance-critic

Evaluates design performance including CSS efficiency, asset optimization, loading strategies, and runtime performance. Use this agent to ensure generated designs are fast and efficient. Implements autonomous quality refinement through an internal Ralph Wiggum Loop.

Claude-Code-Community-Ireland/claude-code-resources · 48 tokens

html-build

Build agent — generates lecturevN.html from slidedeck.md and designspec.md, integrates images. Use when: designspec.md is locked (Gate 3 approved) and HTML slide file needs to be produced.

5throck/ai-workspace-standards · 47 tokens

ui-color-reviewer

Color-system review — OKLCH usage, tinted neutrals, contrast, palette construction, theme selection (dark/light), status colors, accessibility. Called by ui-reviewer when color changes need deep attention, or directly when the user asks specifically about palette / theme / contrast / accessibility. Dispatch when: a…

RaNDoM6913/claude-code-superkit · 154 tokens