Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计未展示

css-development%3avalidateCSS 开发 3avalidate

Agent Skill

css-development%3avalidate 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

315

周安装

13

GitHub Stars

31

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:css-development%3avalidate(CSS 开发 3avalidate)
来源仓库:https://github.com/2389-research/claude-plugins
仓库路径:skills/css-development%3Avalidate
安装命令:
npx skills add https://github.com/2389-research/claude-plugins --skill css-development:validate
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/2389-research/claude-plugins --skill css-development:validate

简介

用于审核现有 CSS 代码是否符合命名规范、组合模式和文档要求。

  • 检查 Tailwind @apply 使用、深色模式覆盖和测试完整性。
  • 提供具体反馈和改进建议,适用于合并前的代码审查场景。
  • 安装命令:npx skills add https://github.com/2389-research/claude-plugins --skill css-development:validate
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

CSS Development: Validate

Overview

Reviews existing CSS code against established patterns and provides specific, actionable feedback:

  • Semantic naming conventions
  • Tailwind @apply composition
  • Dark mode variant coverage
  • Test coverage (static + rendering)
  • Documentation quality
  • Composition opportunities

This is a sub-skill of css-development - typically invoked automatically via the main skill.

When This Skill Applies

Use when:

  • Reviewing existing CSS code
  • Auditing component styles for consistency
  • Checking if patterns are being followed
  • Before merging CSS changes
  • Refactoring prep (identify issues first)

Pattern Reference

This skill validates against patterns documented in the main css-development skill:

Semantic naming: .button-primary not .btn-blue Tailwind composition: Use @apply to compose utilities Dark mode: Include dark: variants Test coverage: Static CSS + component rendering tests Documentation: Usage comments above classes

Workflow

When this skill is invoked, create a TodoWrite checklist and work through validation systematically.

Announce Usage

"I'm using the css-development:validate skill to review this CSS against established patterns."

Create TodoWrite Checklist

Use the TodoWrite tool:

Validating CSS:
- [ ] Read CSS files (load components.css and related styles)
- [ ] Check semantic naming (verify descriptive class names)
- [ ] Verify @apply usage (ensure Tailwind composition)
- [ ] Check dark mode coverage (confirm dark: variants present)
- [ ] Look for composition opportunities (identify reusable patterns)
- [ ] Verify test coverage (check static and rendering tests exist)
- [ ] Check documentation (ensure usage comments present)
- [ ] Report findings (provide file:line references and suggestions)

Validation Checklist Details

Step 1: Read CSS Files

Action: Use Read tool to load CSS files for review

Files to check:

  • styles/components.css (main semantic components)
  • Any component-specific CSS files mentioned
  • Inline styles in component files (if applicable)

What to capture:

  • All class definitions
  • Usage of @apply vs. inline utilities
  • Presence of dark mode variants
  • Documentation comments

Mark as completed when files are loaded and understood.


Step 2: Check Semantic Naming

Action: Review all class names for semantic, descriptive naming

Good patterns:

  • .button-primary, .card-header, .form-field, .empty-state
  • Context + component: .session-card, .marketing-hero
  • Base + variant: .badge-success, .button-danger

Bad patterns (report these):

  • Utility names: .btn-blue, .card-sm, .text-big
  • Abbreviations: .btn, .hdr, .desc
  • Generic: .component, .item, .thing
  • Random: .style1, .custom, .special

For each issue:

  • Note file and line number
  • Show the problematic class name
  • Suggest semantic alternative based on usage context

Mark as completed when all class names reviewed.


Step 3: Verify @apply Usage

Action: Check that Tailwind utilities are composed via @apply, not scattered in markup

Good patterns:

.button-primary {
  @apply bg-indigo-500 hover:bg-indigo-700 px-6 py-3 rounded-lg;
}

Bad patterns (report these):

<!-- Utilities in markup instead of semantic class -->
<button class="bg-indigo-500 hover:bg-indigo-700 px-6 py-3 rounded-lg">
  Click me
</button>

Check:

  • Are utilities composed into semantic classes via @apply?
  • Are there repeated utility combinations in markup that should be extracted?
  • Are semantic classes actually being used in components?

For each issue:

  • Show the problematic markup or CSS
  • Explain why it should use @apply
  • Suggest extraction to semantic class

Mark as completed when @apply usage is reviewed.


Step 4: Check Dark Mode Coverage

Action: Verify colored and interactive elements have dark: variants

What needs dark mode:

  • Background colors (bg-*)
  • Text colors (text-*)
  • Border colors (border-*)
  • Interactive states (hover, focus)
  • Shadows that affect visibility

What typically doesn't need dark mode:

  • Spacing utilities (p-*, m-*, gap-*)
  • Layout utilities (flex, grid, etc.)
  • Pure structural styles

Pattern to check:

/* Good - has dark mode */
.card {
  @apply bg-white dark:bg-gray-800 text-gray-900 dark:text-white;
}

/* Bad - missing dark mode */
.card {
  @apply bg-white text-gray-900;
}

For each issue:

  • Note which class is missing dark mode variants
  • Show the current CSS
  • Suggest specific dark: utilities to add

Mark as completed when dark mode coverage is checked.


Step 5: Look for Composition Opportunities

Action: Identify repeated patterns that could use existing classes or be extracted

Look for:

  • Same utility combinations repeated in multiple classes
  • Similar patterns that could share a base class
  • Inline utilities that could reference semantic classes

Example issue:

/* Repeated pattern */
.card-primary {
  @apply bg-white dark:bg-gray-800 rounded-lg shadow-md p-6;
}

.card-secondary {
  @apply bg-white dark:bg-gray-800 rounded-lg shadow-md p-6;
  @apply border-2 border-gray-200;
}

/* Suggestion: Extract base .card class, add variants */
.card {
  @apply bg-white dark:bg-gray-800 rounded-lg shadow-md p-6;
}

.card-secondary {
  @apply border-2 border-gray-200;
}

For each opportunity:

  • Show the repeated pattern
  • Suggest base class + composition
  • Estimate impact (how many places benefit)

Mark as completed when composition opportunities are identified.


Step 6: Verify Test Coverage

Action: Check that CSS classes have test coverage

Static CSS tests - Check styles/__tests__/components.test.ts:

it('should have button-primary class', () => {
  expect(content).toContain('.button-primary');
});

Component rendering tests - Check component test files:

it('applies button-primary class', () => {
  render(<Button variant="primary">Click</Button>);
  expect(screen.getByRole('button')).toHaveClass('button-primary');
});

For classes without tests:

  • List the class name
  • Note which test is missing (static, rendering, or both)
  • Provide test template to add

Mark as completed when test coverage is checked.


Step 7: Check Documentation

Action: Verify components have usage documentation

Required documentation:

  • Comment above CSS class explaining purpose
  • Usage example in comment

Example:

/* Button component - Primary action button with hover lift effect
   Usage: <button className="button-primary">Click me</button> */
.button-primary {
  ...
}

For classes without documentation:

  • List the class name and location
  • Suggest documentation to add based on class purpose

Mark as completed when documentation is checked.


Step 8: Report Findings

Action: Compile all findings into structured report

Report format:

## CSS Validation Report

### ✅ Good Patterns Found

- `.button-primary` follows semantic naming (components.css:15)
- Dark mode variants present on interactive elements (components.css:17-19)
- Tests cover className application (Button.test.tsx:23)
- Documentation comments present (components.css:14)

### ⚠️ Issues Found

#### Semantic Naming Issues

**components.css:45** - `.btn-blue` uses utility naming
- Current: `.btn-blue`
- Suggestion: Rename to `.button-secondary` for consistency with `.button-primary`
- Impact: Update 3 component files

**components.css:67** - `.card-sm` uses size in name
- Current: `.card-sm`
- Suggestion: Extract size to utility or rename to `.card-compact` for semantic meaning
- Impact: Update 5 usages

#### Missing Dark Mode Variants

**components.css:78** - `.card-header` missing dark mode
- Current: `@apply bg-gray-100 text-gray-900`
- Suggestion: Add `dark:bg-gray-800 dark:text-white`
- Impact: Visual bug in dark mode

**components.css:92** - `.badge` missing dark mode
- Current: `@apply bg-indigo-100 text-indigo-800`
- Suggestion: Add `dark:bg-indigo-900 dark:text-indigo-200`
- Impact: Low contrast in dark mode

#### Missing Test Coverage

**components.css:102** - `.empty-state` has no tests
- Missing: Both static CSS test and component rendering test
- Suggestion: Add tests to verify class exists and renders correctly

#### Missing Documentation

**components.css:115** - `.session-card` lacks usage comment
- Suggestion: Add comment explaining purpose and usage example

### 📊 Summary

- **Total classes reviewed:** 12
- **Issues found:** 7
- **Priority:** 2 high (dark mode bugs), 3 medium (naming), 2 low (docs)

### 🎯 Recommended Actions

1. **High priority:** Add dark mode variants to `.card-header` and `.badge` (visual bugs)
2. **Medium priority:** Rename `.btn-blue` → `.button-secondary` for consistency
3. **Medium priority:** Add test coverage for `.empty-state`
4. **Low priority:** Add documentation comments to undocumented classes

Would you like me to fix these issues, or would you prefer to address them manually?

Mark as completed when report is generated and presented.


Completion

After generating the validation report:

  1. Ask user what they want to do next:

- Fix issues automatically? - Fix specific issues only? - Just wanted the report?

  1. Offer to invoke refactor skill if there are structural issues that need refactoring
  2. Suggest committing any fixes made

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

35.17%
按下载量换算36

Claude

29.61%
按下载量换算30

Cursor

19.96%
按下载量换算21

Gemini CLI

10.01%
按下载量换算10

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills