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.
npx agentmods add skills/andresquirogadev/skillsense/tailwindcssnpx skills add andresquirogadev/skillsense --skill tailwindcssgit clone --depth 1 https://github.com/andresquirogadev/skillsenseWrote 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.
[](https://agentmods.dev/skills/andresquirogadev/skillsense/tailwindcss)<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>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.
| Model | Per session | Once 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 |
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.
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 requiresdarkMode: 'class'intailwind.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.colorsto support theming:'primary': 'hsl(var(--primary))'. - Add custom animations under
theme.extend.keyframesandtheme.extend.animation. - Use
contentarray 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
clsxorcn()(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
prosefrom@tailwindcss/typographyfor 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 (
@themein CSS) instead oftailwind.config.ts. - Import with
@import "tailwindcss"in your main CSS file. - Custom utilities:
@utility, custom variants:@variant.
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.
- 5d ago First seen · 41 lines · 0 tokens per session scan A aa5e3af49e47
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.
Other skills, from other repositories
visual-verdict
Structured visual QA verdict for screenshot-to-reference comparisons.
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.
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…
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.
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).
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…