dobroslavradosavljevic/skills

tailwind

Build, review, debug, configure, or migrate Tailwind CSS projects using current Tailwind documentation.

First seen Jul 10, 2026

Installation

$ npx skills add dobroslavradosavljevic/skills --skill tailwind

Summary

  • Build, review, debug, configure, or migrate Tailwind CSS projects using current Tailwind documentation.
  • Use for Tailwind CSS v4 utilities, CSS-first configuration, theme variables, Vite/PostCSS/CLI setup, source detection, variants, responsive design, dark mode, Preflight, custom utilities, @apply/@reference, Prettier class sorting, and v3-to-v4 upgrades.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dobroslavradosavljevic/skills · top by installs.

npx skills add dobroslavradosavljevic/skills

Browse all from dobroslavradosavljevic/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,617 B
  • docs SUMMARY.md 373 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 45 installs

SKILL.md

Tailwind

Use this skill to make Tailwind CSS decisions from current docs plus the local project's actual Tailwind version, integration path, and design conventions.

Workflow

  1. Identify the Tailwind surface:

- Read the nearest project guidance and package manifests. - Check installed versions of tailwindcss, @tailwindcss/vite, @tailwindcss/postcss, @tailwindcss/cli, prettier-plugin-tailwindcss, and framework packages. - Inspect CSS entry files, vite.config., PostCSS config, framework config, tailwind.config., and class composition helpers.

  1. Refresh docs when the user asks for latest/current behavior, when versions differ from the captured snapshot, or when touching v4 migration/configuration:

- Use [source-map.md](references/source-map.md) for the captured latest-version snapshot and official source links.

  1. Load the focused reference file:

- [setup-and-migration.md](references/setup-and-migration.md): installation paths, package split, v3-to-v4 upgrade, browser support, and migration hazards. - [core-utilities.md](references/core-utilities.md): utility-class composition, source detection, responsive design, dark mode, variants, arbitrary values, Preflight, and accessibility. - [css-directives-and-theme.md](references/css-directives-and-theme.md): @theme, @source, @utility, @variant, @custom-variant, @apply, @reference, @config, @plugin, and Tailwind CSS functions.

  1. Implement in the existing project style:

- Prefer the project's current Tailwind major version and integration package. - Use complete, statically detectable class names. Map props or states to full class strings instead of interpolating fragments. - Prefer design-token utilities and theme variables over one-off arbitrary values. - Add custom CSS only when utilities, theme variables, variants, or component composition are not the right fit. - Do not migrate a v3 project to v4 unless the user asks or the task requires it.

  1. Verify the smallest meaningful surface:

- Run the relevant style build, framework build, typecheck, lint, tests, Storybook, or browser check. - For visible UI changes, inspect the actual rendered state when feasible. - Report any verification you could not run.

Tailwind Judgment

  • Treat Tailwind v4 as CSS-first: @import "tailwindcss";, theme variables in CSS, and dedicated Vite/PostCSS/CLI integration packages.
  • Use @source for monorepos, ignored external packages, multiple stylesheets, safelisting, and source exclusions.
  • Keep responsive styles mobile-first: unprefixed utilities target all sizes, breakpoint prefixes apply at that breakpoint and above.
  • Keep dark mode explicit: use default prefers-color-scheme behavior or define a project selector with @custom-variant dark.
  • Treat Preflight as active when Tailwind is imported. Account for reset margins, unstyled headings/lists, border reset, block images, responsive media, and hidden attributes.
  • Prefer official framework guides when a framework owns the CSS pipeline.
  • If the project must support Safari below 16.4, Chrome below 111, or Firefox below 128, do not choose Tailwind v4 without an explicit compatibility decision.