tailwindcss-development

Writes and fixes Tailwind CSS v3 utility classes in HTML templates.

Updated May 26, 2026
One-click install
npx skills add https://github.com/rmethodm/resumegen --skill tailwindcss-development-rmethodm
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: tailwindcss-development
Source: https://github.com/rmethodm/resumegen/tree/main/.agents/skills/tailwindcss-development
Command: npx skills add https://github.com/rmethodm/resumegen --skill tailwindcss-development-rmethodm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Styling responsive layouts, components, and dark mode variants with Tailwind CSS requires knowing the correct utility classes, spacing conventions, and v3-specific syntax, which is easy to get wrong or inconsistent with existing project patterns. ## Core Features & Use Cases - Utility Class Authoring: Write Tailwind CSS v3 classes for flexbox layouts, responsive grids, cards, navbars, forms, and typography in Blade, JSX, or Vue templates. - Convention Enforcement: Follow existing project patterns, use gap utilities instead of margins for sibling spacing, and remove redundant classes. - Dark Mode Support: Add dark: variants consistently when the project already supports dark mode. - Use Case: When building a dashboard page with a sidebar and a responsive three-column card grid, invoke this Skill to generate correct v3 classes with proper breakpoints and dark mode variants. ## Quick Start Ask the AI to build a responsive pricing section with three cards using Tailwind CSS v3, including dark mode support.

Frequently Asked Questions about tailwindcss-development

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a responsive grid layout with Tailwind CSS?▼

Use grid utilities with responsive breakpoint prefixes, such as `grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6`. This stacks items on mobile and expands to multiple columns on larger screens, with gap utilities handling spacing between items.

How to add dark mode support in Tailwind CSS v3?▼

Apply the `dark:` variant to color utilities, for example `bg-white dark:bg-gray-900 text-gray-900 dark:text-white`. New pages and components should match the dark mode approach already used elsewhere in the project.

Should I use margin or gap for spacing between flex items in Tailwind?▼

Use gap utilities like `gap-4` or `gap-8` on the flex or grid container instead of margins on child elements. Gap utilities avoid spacing inconsistencies and reduce redundant classes across sibling elements.

Does this Tailwind skill work with Tailwind CSS v4?▼

The skill targets Tailwind CSS v3 specifically, using `tailwind.config.js` for configuration and `@tailwind base/components/utilities` directives for imports. It verifies that only v3-supported classes are used.

When should I not use Tailwind utility classes?▼

Skip Tailwind work for backend PHP logic, database queries, API routes, JavaScript without an HTML/CSS component, CSS file audits, and build tool configuration. The skill focuses on writing utility classes in HTML templates.