tailwind-css expert

tailwind-css expert is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 36 tokens per session (2,254 once invoked), scanned A, original, MIT.

A guide to building user interfaces with Tailwind CSS, a utility-based styling system for writing web layouts and visual styles in code.

In plain words
What is it for?
It is for configuring Tailwind, defining shared CSS design tokens, creating reusable styles, and checking production UI quality.
Why use it?
It helps keep colors, spacing, themes, buttons, cards, dark mode, and responsive layouts consistent.

Skill for Claude CodeCodex

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

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/luuow/meridian-mcp/tailwind-css
Any agent
npx skills add LuuOW/meridian-mcp --skill tailwind-css
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

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 tailwind-css expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/tailwind-css.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/tailwind-css)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/tailwind-css"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/tailwind-css.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,254 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.1 $0.00036 $0.02254
Opus 5 $0.00018 $0.01127
Sonnet 5 $0.00007 $0.00451
Haiku 4.5 $0.00004 $0.00225

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

Security

Grade A, and why

tailwind-css 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 2d 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/tailwind-css/SKILL.md · 237 lines

How it starts

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

Tailwind CSS Skill Guide

Objective

Define a repeatable Tailwind workflow for fast, consistent, accessible UI delivery. Includes modern CSS variable theming patterns used in production dashboards.

1) Configuration Baseline

npm i -D tailwindcss @tailwindcss/vite   # Tailwind v4
# or
npm i -D tailwindcss postcss autoprefixer # Tailwind v3
  • Create stylesheet entry: @import "tailwindcss"; (v4) or @tailwind base/components/utilities (v3).
  • Configure source scanning: v4 auto-detects; v3 uses content globs in tailwind.config.js.
  • Add shared breakpoint/container conventions early to avoid layout drift.

2) CSS Variable Token System

Tailwind works best with CSS vars as semantic tokens:

/* globals.css — shadcn/ui convention */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --primary: 221.2 83.2% 53.3%;
  --primary-foreground: 210 40% 98%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --border: 214.3 31.8% 91.4%;
  --ring: 221.2 83.2% 53.3%;
  --radius: 0.5rem;
}
.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
  --muted: 217.2 32.6% 17.5%;
  --border: 217.2 32.6% 17.5%;
}

Wire into tailwind.config.js:

theme: {
  extend: {
    colors: {
      background: 'hsl(var(--background))',
      foreground: 'hsl(var(--foreground))',
      primary: { DEFAULT: 'hsl(var(--primary))', foreground: 'hsl(var(--primary-foreground))' },
      muted: { DEFAULT: 'hsl(var(--muted))', foreground: 'hsl(var(--muted-foreground))' },
      border: 'hsl(var(--border))',
    },
    borderRadius: { lg: 'var(--radius)', md: 'calc(var(--radius) - 2px)', sm: 'calc(var(--radius) - 4px)' },
  },
}

3) Alternative: Raw CSS Variable Theme (no hsl wrapper)

For custom dashboards that don't use shadcn:

:root {
  --fg:           #0f172a;
  --muted:        #64748b;
  --bg:           #ffffff;
  --bg-elevated:  #f8fafc;
  --border:       rgba(0,0,0,0.08);
  --border-strong:rgba(0,0,0,0.14);
  --accent:       #0d6d8a;
  --accent-fg:    #ffffff;
  --green:        #3ecf8e;
  --yellow:       #eaaf2a;
  --red:          #f57265;
  --blue:         #46afc8;
  --radius:       10px;
  --radius-sm:    6px;
  --radius-lg:    16px;
}
.dark { /* override each var */ }

Read the full file on GitHub · 237 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. 2d ago First seen · 237 lines · 36 tokens per session scan A ad2200bcac8a

Subscribe to this mod's changes

tailwind-css expert is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 2,254 once invoked, about $0.0002 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 skills, from other repositories

shadcn-ui

Build accessible, customizable UIs with shadcn/ui, Radix UI, and Tailwind CSS. Use when setting up shadcn/ui, installing components, building forms with React Hook Form + Zod, customizing themes, or implementing component patterns.

wpank/ai · 56 tokens

smooth-shadow-ring

Use when styling any elevated surface (card, dialog, popover, dropdown, menu, tooltip, sheet, toast) in a Tailwind project that has shadow-plugin installed. Prevents the double-border artifact caused by pairing a border/ring with a shadow, by routing elevation through the smooth-shadow-ring- utilities.

flornkm/shadow-plugin · 67 tokens

absolute-ui

Build polished, intentional UIs with concrete CSS/Tailwind values — typography, color, layout, spacing, dark mode, accessibility, animations, components. Encodes specific, opinionated rules with exact values, not vague advice. Covers buttons, cards, forms, tables, navigation, dashboards, landing pages, onboarding, and…

maddhruv/absolute · 121 tokens

Tailwind CSS Class Hygiene Review

Checks Tailwind utility class hygiene at the syntax level: arbitrary-value overuse that bypasses the theme scale, conflicting/duplicate utilities on one element, and hardcoded arbitrary colors that should use design tokens.

s977043/river-review · 48 tokens

tailwind-helpers

Production-grade Tailwind CSS patterns for responsive layouts, dark mode, spacing scales, shadcn integration, and accessible color usage. Load before writing any styled UI.

Amery2010/open-builder · 38 tokens

Tailwind CSS Patterns

Use this skill when styling UI with Tailwind and you want consistent design tokens, maintainable class composition, and good accessibility defaults.

AmariahAK/atlarix-skills · 4 tokens