tailwindcss

tailwindcss is a skill for Claude Code, Codex from andresquirogadev/skillsense. It costs 0 tokens per session (495 once invoked), scanned A, original, MIT.

A set of conventions for Tailwind CSS, a system for styling HTML and JSX with small utility classes. It covers responsive layouts, dark mode, design tokens, reusable components, and class organization.

In plain words
What is it for?
Use it when building a Tailwind CSS interface. It guides configuration, mobile-first responsive styles, dark mode, theming with CSS variables, animations, and reusable class patterns.
Why use it?
It keeps Tailwind styling consistent and reduces conflicting or duplicated classes across a project.

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/andresquirogadev/skillsense/tailwindcss
Any agent
npx skills add andresquirogadev/skillsense --skill tailwindcss
Clone the repo
git clone --depth 1 https://github.com/andresquirogadev/skillsense

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 tailwindcss

README.md
[![agentmods](https://agentmods.dev/badge/skills/andresquirogadev/skillsense/tailwindcss.svg)](https://agentmods.dev/skills/andresquirogadev/skillsense/tailwindcss)
Your own site
<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/tailwindcss"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/tailwindcss.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 495 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.00000 $0.00495
Opus 5 $0.00000 $0.00247
Sonnet 5 $0.00000 $0.00099
Haiku 4.5 $0.00000 $0.00049

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

Security

Grade A, and why

tailwindcss 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 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.

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.

packages/catalog/skills/tailwindcss/SKILL.md · 41 lines

What it actually says

Tailwind CSS Skill

You are working with Tailwind CSS. Apply these conventions.

Core Usage

  • Apply styles exclusively through utility classes in JSX/HTML. Avoid writing custom CSS unless absolutely necessary.
  • Use Tailwind's responsive prefixes in mobile-first order: base → sm:md:lg:xl:.
  • Dark mode with dark: prefix requires darkMode: 'class' in tailwind.config.ts.
  • Group related utilities logically: layout → spacing → typography → color → effects.

Configuration (tailwind.config.ts)

  • Define the design token system in theme.extend — do not overwrite the default theme entirely.
  • Use CSS variables in theme.extend.colors to support theming: 'primary': 'hsl(var(--primary))'.
  • Add custom animations under theme.extend.keyframes and theme.extend.animation.
  • Use content array to configure PurgeCSS correctly: include all files that contain class names.

Component Patterns

  • Extract repeated class strings into a component or use cva (class-variance-authority) for variants.
  • Use clsx or cn() (clsx + tailwind-merge) to conditionally apply classes without conflicts.
    import { clsx } from 'clsx';
    import { twMerge } from 'tailwind-merge';
    export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); }
    
  • Never use string interpolation to build class names (text-${color}-500) — Tailwind cannot detect these at build time. Use a full class object map instead.

Typography & Spacing Scale

  • Use the spacing scale consistently: 4 = 1rem, 8 = 2rem, etc.
  • Use prose from @tailwindcss/typography for rich-text/markdown content.
  • Use line-clamp-{n} from @tailwindcss/line-clamp (built-in Tailwind v3.3+) to truncate text.

Tailwind v4 (if used)

  • Tailwind v4 uses CSS-first config (@theme in CSS) instead of tailwind.config.ts.
  • Import with @import "tailwindcss" in your main CSS file.
  • Custom utilities: @utility, custom variants: @variant.
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 · 41 lines · 0 tokens per session scan A aa5e3af49e47

Subscribe to this mod's changes

tailwindcss is a skill published in the GitHub repository andresquirogadev/skillsense (2 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 495 tokens. 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-31.

Related

Other skills, from other repositories

visual-verdict

Structured visual QA verdict for screenshot-to-reference comparisons.

Yeachan-Heo/oh-my-claudecode · 13 tokens

tailwind-design-system

Build scalable design systems with Tailwind CSS v4, design tokens, component libraries, and responsive patterns. Use when creating component libraries, implementing design systems, or standardizing UI patterns.

calesthio/OpenMontage · 42 tokens

gsap-scrolltrigger

Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…

calesthio/OpenMontage · 68 tokens

gsap-performance

Official GSAP skill for performance — prefer transforms, avoid layout thrashing, will-change, batching. Use when optimizing GSAP animations, reducing jank, or when the user asks about animation performance, FPS, or smooth 60fps.

calesthio/OpenMontage · 52 tokens

gsap-timeline

Official GSAP skill for timelines — gsap.timeline(), position parameter, nesting, playback. Use when sequencing animations, choreographing keyframes, or when the user asks about animation sequencing, timelines, or animation order (in GSAP or when recommending a library that supports timelines).

calesthio/OpenMontage · 61 tokens

interaction-skill

Layer A interaction-mechanics reference anchored to the beui.dev catalog. Stacks on any style skill whenever work adds or changes motion or interaction — micro-interactions, animated components, transitions, gestures, hover/press/state feedback, loading/success/error morphs, 'make it feel alive'. Mandates reading the…

code-yeongyu/oh-my-openagent · 104 tokens