smithery/neversight

busirocket-tailwindcss-v4

Tailwind CSS v4 setup and styling strategy. Use when configuring Tailwind v4, writing component styles, deciding between utility classes and custom CSS, and avoiding style drift.

Installation

$ npx skills add smithery/neversight --skill busirocket-tailwindcss-v4

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 smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

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

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
More metadata
author
cristiandeluxe
version
1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,897 B
  • docs SUMMARY.md 211 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Tailwind CSS v4 Best Practices

Setup and styling patterns for Tailwind CSS v4 projects.

When to Use

Use this skill when:

  • Setting up Tailwind CSS v4 in a project
  • Writing component styles with Tailwind utilities
  • Deciding when to extract custom CSS vs using utilities
  • Avoiding style drift and maintaining consistency

Non-Negotiables (MUST)

  • Import Tailwind via a single global CSS entry: @import 'tailwindcss';
  • Keep that global CSS imported from the root layout.
  • Prefer Tailwind utilities in className for most styling.
  • Avoid large custom CSS files; keep custom CSS truly global (resets, tokens).
  • Avoid heavy use of arbitrary values unless necessary; prefer consistent

tokens.

Class Strategy

  • If class strings become hard to read:

- Extract a small presentational component. - Or extract a components/<area>/... wrapper rather than inventing large custom CSS.

Rules

Setup

  • tailwind-setup - Tailwind CSS v4 setup (single global CSS import)

Class Strategy

  • tailwind-class-strategy - Prefer utilities, extract components when needed
  • tailwind-avoid-drift - Avoid style drift (keep custom CSS global, prefer

tokens)

Ordering

  • tailwind-css-ordering - CSS order depends on import order

How to Use

Read individual rule files for detailed explanations and code examples:

rules/tailwind-setup.md
rules/tailwind-class-strategy.md
rules/tailwind-avoid-drift.md

Each rule file contains:

  • Brief explanation of why it matters
  • Code examples (correct and incorrect patterns)
  • Additional context and best practices