Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

tailwindTailwind CSS 样式

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,952

周安装

83

GitHub Stars

10

下载量

684
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tailwind(Tailwind CSS 样式)
来源仓库:https://github.com/oakoss/agent-skills
仓库路径:skills/tailwind
安装命令:
npx skills add https://github.com/oakoss/agent-skills --skill tailwind
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill tailwind

简介

tailwind 用于辅助前端页面、组件和样式的开发与维护,适合生成或审查 Tailwind CSS、React、Next.js 等相关代码。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的样式与布局优化任务。
  • 通过 GitHub 仓库安装,使用 npx skills add 等 --skill tailwind 命令部署。
  • 需结合现有设计系统和构建方式,避免只输出片段;页面改动应配合预览检查。
  • 注意响应式表现与文本溢出问题,建议通过浏览器验证布局效果。

SKILL.md

Tailwind CSS (v4+)

Overview

Tailwind CSS v4 skill covering CSS-first configuration, design tokens, component patterns, shadcn/ui integration, dark mode, container queries, migration from v3, and custom utilities.

When to use: Configuring Tailwind themes, building utility-first components, implementing dark mode, using container queries, migrating from v3, integrating shadcn/ui, troubleshooting build errors.

When NOT to use: Tailwind v3 legacy projects that will not upgrade, projects using a different styling approach (CSS Modules, styled-components) without plans to adopt Tailwind.

Quick Reference

PatternAPIKey Points
CSS-first config@theme {--color-brand: oklch(...);}All config in CSS, no tailwind.config.js
Import entry@import "tailwindcss";Replaces @tailwind base/components/utilities
Custom utilities@utility name {...}Replaces @layer utilities, works with variants
Functional utilities@utility tab-* {tab-size: --value(--tab-size-*);}Accept dynamic values via --value()
Plugin loading@plugin "@tailwindcss/typography";Replaces require() in config
Container queries@container parent + @md: childBuilt-in, no plugin needed
Named containers@container/sidebar + @md/sidebar:Scope queries to specific containers
Dark mode variant@custom-variant dark (&:where(.dark,.dark *));Class-based dark mode override
Theme inline@theme inline {--color-bg: var(--bg);}Inlines values at build, single-theme only
Source detection@source "../node_modules/my-lib";Explicitly add scan paths
Reference import@reference "../../app.css";Use theme in Vue/Svelte scoped styles
Override defaults--color-*: initial; inside @themeReset a category before redefining
Dynamic valuesgrid-cols-(--my-var)Use CSS variables in utility values
Text shadowstext-shadow-*Built-in text shadow utilities
Starting stylesstarting:opacity-0@starting-style variant for entry animations
Masksmask-*CSS mask utilities for image/gradient masking
Field sizingfield-sizing-contentAuto-sizing textareas and inputs
Inset shadowsinset-shadow-*, inset-ring-*Inner shadow and ring utilities
User validationuser-valid:, user-invalid:Form validation after user interaction
Pointer queriespointer-fine:, pointer-coarse:Target input device precision
Inertinert:opacity-50Style inert elements
Logical spacingpbs-*, pbe-*, mbs-*, mbe-*Block-direction padding/margin (v4.2)
Logical sizinginline-*, block-*, min-inline-*, max-block-*Logical width/height utilities (v4.2)
Logical insetinset-s-*, inset-e-*, inset-bs-*, inset-be-*Logical positioning; replaces start-*/end-*
Logical bordersborder-bs-*, border-be-*Block-direction border utilities (v4.2)
Font featuresfont-features-['smcp']OpenType font-feature-settings (v4.2)
New color palettesmauve, olive, mist, taupeAdditional neutral palettes (v4.2)
Webpack integration@tailwindcss/webpackRun Tailwind as a webpack plugin (v4.2)
Color spaceOKLCHDefault in v4, sRGB fallbacks generated

Common Mistakes

MistakeCorrect Pattern
Using tailwind.config.js in v4Configure via @theme {...} in CSS
hsl(var(--background)) double-wrapReference directly: var(--background)
:root/.dark inside @layer baseDefine at root level, outside any @layer
@apply with @layer components classesUse @utility directive for custom utilities
@theme inline for multi-theme switchingUse @theme without inline for dynamic themes
Raw colors like bg-blue-500 everywhereSemantic tokens (bg-primary) that auto-adapt
require() or @import for pluginsUse @plugin "package-name";
tailwindcss-animate in v4Use tw-animate-css instead
Missing @theme inline with shadcn/uiMap all CSS variables in @theme inline block
Using theme('colors.brand') in CSSUse var(--color-brand) native CSS variables
Using deprecated start-*/end-* insetUse inset-s-*/inset-e-* logical utilities

Delegation

  • Class pattern discovery and usage examples: Use Explore agent
  • v3 to v4 migration across multiple files: Use Task agent
  • Design token hierarchy and theming architecture: Use Plan agent
If the motion skill is available, delegate complex animation patterns (spring physics, gestures, scroll-linked) to it.

References

  • Configuration -- CSS-first config, @theme, @theme inline, @utility, @plugin, @source, @reference, @variant directives
  • Design Tokens -- OKLCH token system, brand scales, semantic tokens, shadows, z-index, fluid typography
  • Component Patterns -- Layouts, grids, container queries, 3D transforms, subgrid, CVA variants
  • UI Patterns -- Buttons, forms, navigation, cards, typography with variants, states, accessibility
  • Dark Mode -- Class-based dark mode, multi-theme systems, ThemeProvider, @custom-variant
  • shadcn/ui Integration -- Four-step architecture, components.json, tw-animate-css, Vite setup
  • Migration -- v3 to v4 migration steps, breaking changes, upgrade tool, common gotchas
  • Troubleshooting -- Common errors, build fixes, CSS layer issues, PostCSS problems

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.84%
按下载量换算225

Claude

30.53%
按下载量换算209

Cursor

19.6%
按下载量换算134

Gemini CLI

9.76%
按下载量换算67

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills